Method | Description | |
---|---|---|
LogFilter ( log4net.ILog log, string prefix ) : System.Web.Http.Controllers |
Initializes a new instance of the LogFilter class.
|
|
OnActionExecuted ( System actionExecutedContext ) : void |
Called after the action method executes. Logs that an action was executed.
|
|
OnActionExecuting ( System.Web.Http.Controllers.HttpActionContext actionContext ) : void |
Called before an action method executes. Logs that an action is beeing executed.
|
public LogFilter ( log4net.ILog log, string prefix ) : System.Web.Http.Controllers | ||
log | log4net.ILog | The logger used to log. |
prefix | string | The prefix. |
return | System.Web.Http.Controllers |
public OnActionExecuted ( System actionExecutedContext ) : void | ||
actionExecutedContext | System | The action executed context. |
return | void |
public OnActionExecuting ( System.Web.Http.Controllers.HttpActionContext actionContext ) : void | ||
actionContext | System.Web.Http.Controllers.HttpActionContext | The action context. |
return | void |