C# Class Rock.Rest.Filters.SecuredAttribute

Checks to see if the Logged-In person has authorization View (HttpMethod: GET) or Edit (all other HttpMethods) for the RestController and Controller's associated EntityType
Inheritance: System.Web.Http.Filters.ActionFilterAttribute
Mostra file Open project: NewSpring/Rock

Public Methods

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

Occurs before the action method is invoked.

Method Details

OnActionExecuting() public method

Occurs before the action method is invoked.
public OnActionExecuting ( System.Web.Http.Controllers.HttpActionContext actionContext ) : void
actionContext System.Web.Http.Controllers.HttpActionContext The action context.
return void