Name | Description | |
---|---|---|
![]() | Cookies | Returns a Cookies object containing the list of cookies that were sent to the web server. |
![]() | Data | Returns a byte array containing the raw request body that was sent to the web server, e.g. the form data submitted in a POST request. If you need to access the request body as text use the Text property instead as it automatically converts into unicode characters. |
![]() | Headers | Returns a reference to a Headers object containing the list of HTTP headers that were sent to the web server. |
![]() | POSTMimeType | Gets the encoding scheme used in a POST request message. |
![]() | POSTParameters | Returns a POSTParameters object containing the list of parameters sent in a POST message. |
![]() | QueryStringValues | Returns a QueryStringValues object containing the list of parameters encoded in the query string section of the URL. |
![]() | RequestLine | Gets the HTTP request line that was sent to the server, e.g. "GET / HTTP/1.1" |
![]() | Text | Returns a string value containing the unicode version of the request body that was sent to the web server, e.g. the JSON encoded parameters in a POST request. For access to non-textual content (e.g. image sent as request body) use the Data property instead.
|