C# 클래스 Ninject.Web.WebApi.Filter.AbstractActionFilter

An abstract action filter implementation to simplify action filter implementations.
상속: IActionFilter
파일 보기 프로젝트 열기: ninject/Ninject.Web.WebApi 1 사용 예제들

공개 메소드들

메소드 설명
ExecuteActionFilterAsync ( System.Web.Http.Controllers.HttpActionContext actionContext, CancellationToken cancellationToken, Func continuation ) : Task

Executes the action filter asyncronously.

OnActionExecuted ( System.Web.Http.Filters.HttpActionExecutedContext actionExecutedContext ) : void

Called when the action is executed.

OnActionExecuting ( System.Web.Http.Controllers.HttpActionContext actionContext ) : void

Called before the action is executing.

보호된 메소드들

메소드 설명
AbstractActionFilter ( ) : System

Initializes a new instance of the AbstractActionFilter class.

메소드 상세

AbstractActionFilter() 보호된 메소드

Initializes a new instance of the AbstractActionFilter class.
protected AbstractActionFilter ( ) : System
리턴 System

ExecuteActionFilterAsync() 공개 메소드

Executes the action filter asyncronously.
public ExecuteActionFilterAsync ( System.Web.Http.Controllers.HttpActionContext actionContext, CancellationToken cancellationToken, Func continuation ) : Task
actionContext System.Web.Http.Controllers.HttpActionContext The action context.
cancellationToken System.Threading.CancellationToken The cancellation token.
continuation Func The continuation.
리턴 Task

OnActionExecuted() 공개 메소드

Called when the action is executed.
public OnActionExecuted ( System.Web.Http.Filters.HttpActionExecutedContext actionExecutedContext ) : void
actionExecutedContext System.Web.Http.Filters.HttpActionExecutedContext The action executed context.
리턴 void

OnActionExecuting() 공개 메소드

Called before the action is executing.
public OnActionExecuting ( System.Web.Http.Controllers.HttpActionContext actionContext ) : void
actionContext System.Web.Http.Controllers.HttpActionContext The action context.
리턴 void