Enables reading of HTTP values sent by a client during a Web request.
| Property Name | Type | Read/Write | Description |
| ApplicationPath | String | Read Only | Gets the web application's virtual application root path on the server. |
| AppRelativeCurrentExecutionFilePath | String | Read Only | Gets the virtual path of the application root and makes it relative by using the tilde (~) notation for the application root (as in "~/page.j9sp"). |
| ContentLength | Number | Read Only | Specifies the length, in bytes, of content sent by the client. |
| ContentType | String | Read Only | Gets or sets the MIME content type of the incoming request. |
| CurrentExecutionFilePath | String | Read Only | Gets the virtual path of the current request. |
| FilePath | String | Read Only | Gets the virtual path of the current request. |
| Form | Dictionary of String elements | Dictionary: Read Only Elements: Read Only | Gets a collection of form variables, accessible by index or name. |
| Headers | Dictionary of String elements | Dictionary: Read Only Elements: Read Only | Gets a collection of HTTP headers. |
| HttpMethod | String | Read Only | Gets the HTTP data transfer method (such as GET, POST, or HEAD) used by the client. |
| IsLocal | Boolean | Read Only | Gets a value indicating whether the request is from the local computer. |
| Params | Dictionary of String elements | Dictionary: Read Only Elements: Read Only | Gets a combined collection of QueryString, Form, ServerVariables, and Cookies items, accessible by index or name. |
| Path | String | Read Only | Gets the virtual path of the current request. |
| PathInfo | String | Read Only | Gets additional path information for a resource with a URL extension. |
| PhysicalApplicationPath | String | Read Only | Gets the physical file system path of the currently executing server application's root directory. |
| PhysicalPath | String | Read Only | Gets the physical file system path corresponding to the requested URL. |
| QueryString | Dictionary of String elements | Dictionary: Read Only Elements: Read Only | Gets the collection of HTTP query string variables, accessible by index or name. |
| RawUrl | String | Read Only | Gets the raw URL of the current request. |
| RequestType | String | Read Only | Gets or sets the HTTP data transfer method (GET or POST) used by the client. |
| ServerVariables | Dictionary of String elements | Dictionary: Read Only Elements: Read Only | Gets a collection of Web server variables, accessible by index or name. |
| TotalBytes | Number | Read Only | Gets the number of bytes in the current input stream. |
| UserAgent | String | Read Only | Gets the raw user agent string of the client browser. |
| UserHostAddress | String | Read Only | Gets the IP host address of the remote client. |
| UserHostName | String | Read Only | Gets the DNS name of the remote client. |