This documentation is archived and is not being maintained.
HttpRequest Properties
Visual Studio 2010
The HttpRequest type exposes the following members.
| 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. |
|
CurrentExecutionFilePathExtension | Gets the extension of the file name that is specified in the CurrentExecutionFilePath property. |
|
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. |
|
HttpChannelBinding | Gets the ChannelBinding object of the current HttpWorkerRequest instance. |
|
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 indicating whether the HTTP connection uses secure sockets (that is, HTTPS). |
|
Item | Gets the specified object from the QueryString, Form, Cookies, or ServerVariables collections. |
|
LogonUserIdentity | Gets the WindowsIdentity type for the current user. |
|
Params | Gets a combined collection of QueryString, Form, Cookies, and ServerVariables 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. |
|
RequestContext | Gets the RequestContext instance 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. |
Show: