C# Класс Rock.Web.HttpHandlerError

Handler used when an error occurrs
Наследование: System.Web.IHttpHandler
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

HttpHandlerError() публичный Метод

Initializes a new instance of the HttpHandlerError class.
public HttpHandlerError ( int statusCode ) : System
statusCode int The status code.
Результат System

ProcessRequest() публичный Метод

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.
Результат void