HttpRequest Members
.NET Framework 3.0
Enables ASP.NET to read the HTTP values sent by a client during a Web request.
The following tables list the members exposed by the HttpRequest type.
| Name | Description | |
|---|---|---|
| AcceptTypes | Gets a string array of client-supported MIME accept types. |
| AnonymousID | Gets the anonymous identifier for the user, if present. |
| ApplicationPath | Gets the ASP.NET application's virtual application root path on the server. |
| AppRelativeCurrentExecutionFilePath | Gets the virtual path of the application root and makes it relative by using the tilde (~) notation for the application root (as in "~/page.aspx"). |
| Browser | Gets or sets information about the requesting client's browser capabilities. |
| ClientCertificate | Gets the current request's client security certificate. |
| ContentEncoding | Gets or sets the character set of the entity-body. |
| ContentLength | Specifies the length, in bytes, of content sent by the client. |
| ContentType | Gets or sets the MIME content type of the incoming request. |
| Cookies | Gets a collection of cookies sent by the client. |
| CurrentExecutionFilePath | Gets the virtual path of the current request. |
| FilePath | Gets the virtual path of the current request. |
| Files | Gets the collection of files uploaded by the client, in multipart MIME format. |
| Filter | Gets or sets the filter to use when reading the current input stream. |
| Form | Gets a collection of form variables. |
| Headers | Gets a collection of HTTP headers. |
| HttpMethod | Gets the HTTP data transfer method (such as GET, POST, or HEAD) used by the client. |
| InputStream | Gets the contents of the incoming HTTP entity body. |
| IsAuthenticated | Gets a value indicating whether the request has been authenticated. |
| IsLocal | Gets a value indicating whether the request is from the local computer. |
| IsSecureConnection | Gets a value indicting whether the HTTP connection uses secure sockets (that is, HTTPS). |
| Item | Gets the specified object from the Cookies, Form, QueryString or ServerVariables collections. |
| LogonUserIdentity | Gets the WindowsIdentity type for the current user. |
| Params | Gets a combined collection of QueryString, Form, ServerVariables, and Cookies items. |
| Path | Gets the virtual path of the current request. |
| PathInfo | Gets additional path information for a resource with a URL extension. |
| PhysicalApplicationPath | Gets the physical file system path of the currently executing server application's root directory. |
| PhysicalPath | Gets the physical file system path corresponding to the requested URL. |
| QueryString | Gets the collection of HTTP query string variables. |
| RawUrl | Gets the raw URL of the current request. |
| RequestType | Gets or sets the HTTP data transfer method (GET or POST) used by the client. |
| ServerVariables | Gets a collection of Web server variables. |
| TotalBytes | Gets the number of bytes in the current input stream. |
| Url | Gets information about the URL of the current request. |
| UrlReferrer | Gets information about the URL of the client's previous request that linked to the current URL. |
| UserAgent | Gets the raw user agent string of the client browser. |
| UserHostAddress | Gets the IP host address of the remote client. |
| UserHostName | Gets the DNS name of the remote client. |
| UserLanguages | Gets a sorted string array of client language preferences. |
(see also
Protected Methods
)
Top
| Name | Description | |
|---|---|---|
| BinaryRead | Performs a binary read of a specified number of bytes from the current input stream. |
| Equals | Overloaded. Determines whether two Object instances are equal. (inherited from Object) |
| GetHashCode | Serves as a hash function for a particular type. (inherited from Object) |
| GetType | Gets the Type of the current instance. (inherited from Object) |
| MapImageCoordinates | Maps an incoming image-field form parameter to appropriate x-coordinate and y-coordinate values. |
| MapPath | Overloaded. Maps the virtual path in the requested URL to a physical path on the server for the current request. |
| ReferenceEquals | Determines whether the specified Object instances are the same instance. (inherited from Object) |
| SaveAs | Saves an HTTP request to disk. |
| ToString | Returns a String that represents the current Object. (inherited from Object) |
| ValidateInput | Causes validation to occur for the collections accessed through the Cookies, Form, and QueryString properties. |
| Name | Description | |
|---|---|---|
| Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (inherited from Object) |
| MemberwiseClone | Creates a shallow copy of the current Object. (inherited from Object) |
Community Additions
ADD
Show: