Class AspNetRequest
Inheritance
System.Object
AspNetRequest
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ArtOfTest.WebAii.WebServers.AspNetHost
Assembly: ArtOfTest.WebAii.dll
Syntax
public class AspNetRequest
Constructors
AspNetRequest(String)
Declaration
public AspNetRequest(string requestPath)
Parameters
System.String
requestPath
|
AspNetRequest(String, String, String, String, List<KeyValuePair<String, String>>, Byte[])
Declaration
public AspNetRequest(string requestFilePath, string requestPathInfo, string requestQueryString, string requestMethod, List<KeyValuePair<string, string>> requestHeaders, byte[] requestBody)
Parameters
System.String
requestFilePath
|
System.String
requestPathInfo
|
System.String
requestQueryString
|
System.String
requestMethod
|
System.Collections.Generic.List<System.Collections.Generic.KeyValuePair<System.String, System.String>>
requestHeaders
|
System.Byte[]
requestBody
|
Properties
Body
Declaration
public byte[] Body { get; set; }
Property Value
System.Byte[]
|
FilePath
Declaration
public string FilePath { get; set; }
Property Value
System.String
|
FullRequestUrl
Declaration
public string FullRequestUrl { get; }
Property Value
System.String
|
Headers
Declaration
public List<KeyValuePair<string, string>> Headers { get; }
Property Value
System.Collections.Generic.List<System.Collections.Generic.KeyValuePair<System.String, System.String>>
|
Method
Declaration
public string Method { get; set; }
Property Value
System.String
|
PathInfo
Declaration
public string PathInfo { get; set; }
Property Value
System.String
|
QueryString
Declaration
public string QueryString { get; set; }
Property Value
System.String
|