C# 클래스 Elmah.ErrorLogPageFactory

HTTP handler factory that dispenses handlers for rendering views and resources needed to display the error log.
상속: IHttpHandlerFactory
파일 보기 프로젝트 열기: clearwavebuild/elmah 1 사용 예제들

공개 메소드들

메소드 설명
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