System.Web.HttpWorkerRequest Class

This abstract class defines the base worker methods and enumerations used by ASP.NET managed code to process requests.

See Also: HttpWorkerRequest Members

Syntax

[System.Runtime.InteropServices.ComVisible(false)]
public abstract class HttpWorkerRequest

Remarks

In most cases, your code will not deal with System.Web.HttpWorkerRequest directly because request and response data are exposed through the System.Web.HttpRequest and System.Web.HttpResponse classes. Some internal ASP.NET classes extend this class. If your code implements its own hosting environment, it will need to extend this class to call the HttpRuntime.ProcessRequest(HttpWorkerRequest) method. In addition, your code could create a derived class for the purpose of child-request execution within a given application in order to pass its instance to HttpRuntime.ProcessRequest(HttpWorkerRequest). In this case, the derived class should keep a reference to the current System.Web.HttpWorkerRequest and delegate most of the methods to it.

Requirements

Namespace: System.Web
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0