HttpRequest Properties
From HttpServer.dll
The HttpRequest type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| AcceptTypes |
Kind of types accepted by the client.
| |
| Body |
Submitted body contents
| |
| BodyIsComplete |
Have all body content bytes been received?
| |
| Connection |
Kind of connection used for the session.
| |
| ContentLength |
Number of bytes in the body
| |
| Cookies | Returns set cookies for the request | |
| Form |
Form parameters.
| |
| Headers |
Headers sent by the client. All names are in lower case.
| |
| HttpVersion |
Version of http.
Probably HttpHelper.HTTP10 or HttpHelper.HTTP11
| |
| IsAjax | Returns true if the request was made by Ajax (Asyncronous Javascript) | |
| Method |
Requested method, always upper case.
| |
| Param |
Check's both QueryString and Form after the parameter.
| |
| QueryString |
Variables sent in the query string
| |
| Uri |
Requested URI (url)
| |
| UriParts |
Uri absolute path splitted into parts.
|