TraceHandler.ProcessRequest(HttpContext) Method
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.
Processes an HTTP request.
protected:
void ProcessRequest(System::Web::HttpContext ^ context);
protected void ProcessRequest (System.Web.HttpContext context);
member this.ProcessRequest : System.Web.HttpContext -> unit
Protected Sub ProcessRequest (context As HttpContext)
Parameters
- context
- HttpContext
An HttpContext object that provides access to the current Request
and Response
instances.
Remarks
The ProcessRequest method writes an HttpResponse that includes all current trace information. The trace information includes calls to the protected
ShowDetails, ShowRequests, and ShowVersionDetails methods.
The TraceHandler class implements the ProcessRequest method to delegate to the implementation of the ProcessRequest method. If you extend the TraceHandler class, implement your own ProcessRequest method to display different tracing information.