C# Класс Elmah.ErrorLogPageFactory

HTTP handler factory that dispenses handlers for rendering views and resources needed to display the error log.
Наследование: IHttpHandlerFactory
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GetHandler ( System.Web.HttpContextBase context, string requestType, string url, string pathTranslated ) : IHttpHandler

Returns an object that implements the IHttpHandler interface and which is responsible for serving the request.

ReleaseHandler ( IHttpHandler handler ) : void

Enables the factory to reuse an existing handler instance.

Приватные методы

Метод Описание
FindHandler ( string name ) : IHttpHandler
GetAuthorizationHandlers ( System.Web.HttpContextBase context ) : IEnumerable
GetRequestUrl ( System.Web.HttpContextBase context ) : Uri
IHttpHandlerFactory ( HttpContext context, string requestType, string url, string pathTranslated ) : IHttpHandler
IsAuthorized ( System.Web.HttpContextBase context ) : bool?

Determines if the request is authorized by objects implementing IRequestAuthorizationHandler.

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

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

Returns an object that implements the IHttpHandler interface and which is responsible for serving the request.
public GetHandler ( System.Web.HttpContextBase context, string requestType, string url, string pathTranslated ) : IHttpHandler
context System.Web.HttpContextBase
requestType string
url string
pathTranslated string
Результат IHttpHandler

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

Enables the factory to reuse an existing handler instance.
public ReleaseHandler ( IHttpHandler handler ) : void
handler IHttpHandler
Результат void