C# Class TechTalks.API.Security.BasicAuthenticationFilter

Inheritance: System.Web.Http.Filters.AuthorizationFilterAttribute
Datei anzeigen Open project: anuragvaishy-galaxe/TechTalks

Public Methods

Method Description
BasicAuthenticationFilter ( ) : System
BasicAuthenticationFilter ( bool active ) : System

Overriden constructor to allow explicit disabling of this filter's behavior. Pass false to disable (same as no filter but declarative)

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

Override to Web API filter method to handle Basic Auth check

Protected Methods

Method Description
OnAuthorizeUser ( string username, string password, System.Web.Http.Controllers.HttpActionContext actionContext ) : bool

Base implementation for user authentication - you probably will want to override this method for application specific logic. The base implementation merely checks for username and password present and set the Thread principal. Override this method if you want to customize Authentication and store user data as needed in a Thread Principle or other Request specific storage.

ParseAuthorizationHeader ( System.Web.Http.Controllers.HttpActionContext actionContext ) : BasicAuthenticationIdentity

Parses the Authorization header and creates user credentials

Private Methods

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

Send the Authentication Challenge request

Method Details

BasicAuthenticationFilter() public method

public BasicAuthenticationFilter ( ) : System
return System

BasicAuthenticationFilter() public method

Overriden constructor to allow explicit disabling of this filter's behavior. Pass false to disable (same as no filter but declarative)
public BasicAuthenticationFilter ( bool active ) : System
active bool
return System

OnAuthorization() public method

Override to Web API filter method to handle Basic Auth check
public OnAuthorization ( System.Web.Http.Controllers.HttpActionContext actionContext ) : void
actionContext System.Web.Http.Controllers.HttpActionContext
return void

OnAuthorizeUser() protected method

Base implementation for user authentication - you probably will want to override this method for application specific logic. The base implementation merely checks for username and password present and set the Thread principal. Override this method if you want to customize Authentication and store user data as needed in a Thread Principle or other Request specific storage.
protected OnAuthorizeUser ( string username, string password, System.Web.Http.Controllers.HttpActionContext actionContext ) : bool
username string
password string
actionContext System.Web.Http.Controllers.HttpActionContext
return bool

ParseAuthorizationHeader() protected method

Parses the Authorization header and creates user credentials
protected ParseAuthorizationHeader ( System.Web.Http.Controllers.HttpActionContext actionContext ) : BasicAuthenticationIdentity
actionContext System.Web.Http.Controllers.HttpActionContext
return BasicAuthenticationIdentity