HttpContext Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the HttpContext class.
Overloads
HttpContext(HttpWorkerRequest) |
Initializes a new instance of the HttpContext class that uses the specified worker-request object. |
HttpContext(HttpRequest, HttpResponse) |
Initializes a new instance of the HttpContext class by using the specified request and response objects. |
HttpContext(HttpWorkerRequest)
Initializes a new instance of the HttpContext class that uses the specified worker-request object.
public:
HttpContext(System::Web::HttpWorkerRequest ^ wr);
public HttpContext (System.Web.HttpWorkerRequest wr);
new System.Web.HttpContext : System.Web.HttpWorkerRequest -> System.Web.HttpContext
Public Sub New (wr As HttpWorkerRequest)
Parameters
The HttpWorkerRequest object for the current HTTP request.
Applies to
HttpContext(HttpRequest, HttpResponse)
Initializes a new instance of the HttpContext class by using the specified request and response objects.
public:
HttpContext(System::Web::HttpRequest ^ request, System::Web::HttpResponse ^ response);
public HttpContext (System.Web.HttpRequest request, System.Web.HttpResponse response);
new System.Web.HttpContext : System.Web.HttpRequest * System.Web.HttpResponse -> System.Web.HttpContext
Public Sub New (request As HttpRequest, response As HttpResponse)
Parameters
- request
- HttpRequest
The HttpRequest object for the current HTTP request.
- response
- HttpResponse
The HttpResponse object for the current HTTP request.