This documentation is archived and is not being maintained.
HttpWorkerRequest Methods
Visual Studio 2008
The HttpWorkerRequest type exposes the following members.
| Name | Description | |
|---|---|---|
|
CloseConnection | Terminates the connection with the client. |
|
EndOfRequest | Used by the runtime to notify the HttpWorkerRequest that request processing for the current request is complete. |
|
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
FlushResponse | Sends all pending response data to the client. |
|
GetAppPath | Returns the virtual path to the currently executing server application. |
|
GetAppPathTranslated | Returns the physical path to the currently executing server application. |
|
GetAppPoolID | Infrastructure. When overridden in a derived class, returns the application pool ID for the current URL. |
|
GetBytesRead | Infrastructure. Gets the number of bytes read in from the client. |
|
GetClientCertificate | Infrastructure. When overridden in a derived class, gets the certification fields (specified in the X.509 standard) from a request issued by the client. |
|
GetClientCertificateBinaryIssuer | Infrastructure. Gets the certificate issuer, in binary format. |
|
GetClientCertificateEncoding | Infrastructure. When overridden in a derived class, returns the Encoding object in which the client certificate was encoded. |
|
GetClientCertificatePublicKey | Infrastructure. When overridden in a derived class, gets a PublicKey object associated with the client certificate. |
|
GetClientCertificateValidFrom | Infrastructure. When overridden in a derived class, gets the date when the certificate becomes valid. The date varies with international settings. |
|
GetClientCertificateValidUntil | Infrastructure. Gets the certificate expiration date. |
|
GetConnectionID | Infrastructure. When overridden in a derived class, returns the ID of the current connection. |
|
GetFilePath | When overridden in a derived class, returns the virtual path to the requested URI. |
|
GetFilePathTranslated | Returns the physical file path to the requested URI (and translates it from virtual path to physical path: for example, "/proj1/page.aspx" to "c:\dir\page.aspx") |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetHttpVerbName | Returns the specified member of the request header. |
|
GetHttpVersion | Provides access to the HTTP version of the request (for example, "HTTP/1.1"). |
|
GetKnownRequestHeader | Returns the standard HTTP request header that corresponds to the specified index. |
|
GetKnownRequestHeaderIndex | Returns the index number of the specified HTTP request header. |
|
GetKnownRequestHeaderName | Returns the name of the specified HTTP request header. |
|
GetKnownResponseHeaderIndex | Returns the index number of the specified HTTP response header. |
|
GetKnownResponseHeaderName | Returns the name of the specified HTTP response header. |
|
GetLocalAddress | Provides access to the specified member of the request header. |
|
GetLocalPort | Provides access to the specified member of the request header. |
|
GetPathInfo | Returns additional path information for a resource with a URL extension. That is, for the path /virdir/page.html/tail, the GetPathInfo value is /tail. |
|
GetPreloadedEntityBody | Overloaded. Overloaded. Returns the portion of the HTTP request body that has currently been read. |
|
GetPreloadedEntityBodyLength | Gets the length of the portion of the HTTP request body that has currently been read. |
|
GetProtocol | When overridden in a derived class, returns the HTTP protocol (HTTP or HTTPS). |
|
GetQueryString | Returns the query string specified in the request URL. |
|
GetQueryStringRawBytes | When overridden in a derived class, returns the response query string as an array of bytes. |
|
GetRawUrl | Returns the URL path contained in the request header with the query string appended. |
|
GetRemoteAddress | Provides access to the specified member of the request header. |
|
GetRemoteName | When overridden in a derived class, returns the name of the client computer. |
|
GetRemotePort | Provides access to the specified member of the request header. |
|
GetRequestReason | Infrastructure. When overridden in a derived class, returns the reason for the request. |
|
GetServerName | When overridden in a derived class, returns the name of the local server. |
|
GetServerVariable | Returns a single server variable from a dictionary of server variables associated with the request. |
|
GetStatusDescription | Returns a string that describes the name of the specified HTTP status code. |
|
GetTotalEntityBodyLength | Gets the length of the entire HTTP request body. |
|
GetType | Gets the type of the current instance. (Inherited from Object.) |
|
GetUnknownRequestHeader | Returns a nonstandard HTTP request header value. |
|
GetUnknownRequestHeaders | Get all nonstandard HTTP header name-value pairs. |
|
GetUriPath | Returns the virtual path to the requested URI. |
|
GetUrlContextID | Infrastructure. When overridden in a derived class, returns the context ID of the current connection. |
|
GetUserToken | When overridden in a derived class, returns the client's impersonation token. |
|
GetVirtualPathToken | Infrastructure. Gets the impersonation token for the request virtual path. |
|
HasEntityBody | Returns a value indicating whether the request contains body data. |
|
HeadersSent | Returns a value indicating whether HTTP response headers have been sent to the client for the current request. |
|
IsClientConnected | Returns a value indicating whether the client connection is still active. |
|
IsEntireEntityBodyIsPreloaded | Returns a value indicating whether all request data is available and no further reads from the client are required. |
|
IsSecure | Returns a value indicating whether the connection uses SSL. |
|
MapPath | Returns the physical path corresponding to the specified virtual path. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
ReadEntityBody | Overloaded. Overloaded. Reads request data from the client (when not preloaded). |
|
SendCalculatedContentLength | Overloaded. Adds a Content-Length HTTP header to the response. |
|
SendKnownResponseHeader | Adds a standard HTTP header to the response. |
|
SendResponseFromFile | Overloaded. Adds the contents of a file to the response. |
|
SendResponseFromMemory | Overloaded. Adds the contents of a memory block to the response. |
|
SendStatus | Specifies the HTTP status code and status description of the response, such as SendStatus(200, "Ok"). |
|
SendUnknownResponseHeader | Adds a nonstandard HTTP header to the response. |
|
SetEndOfSendNotification | Registers for an optional notification when all the response data is sent. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Show: