C# Class Rock.Web.HttpHandlerError

Handler used when an error occurrs
Inheritance: System.Web.IHttpHandler
Mostra file Open project: SparkDevNetwork/Rock

Public Methods

Method Description
HttpHandlerError ( int statusCode ) : System

Initializes a new instance of the HttpHandlerError class.

ProcessRequest ( System context ) : void

Enables processing of HTTP Web requests by a custom HttpHandler that implements the T:System.Web.IHttpHandler interface.

Method Details

HttpHandlerError() public method

Initializes a new instance of the HttpHandlerError class.
public HttpHandlerError ( int statusCode ) : System
statusCode int The status code.
return System

ProcessRequest() public method

Enables processing of HTTP Web requests by a custom HttpHandler that implements the T:System.Web.IHttpHandler interface.
public ProcessRequest ( System context ) : void
context System An object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
return void