C# Class TechTalks.API.Security.BasicAuthenticationFilter

Inheritance: System.Web.Http.Filters.AuthorizationFilterAttribute
Afficher le fichier Open project: anuragvaishy-galaxe/TechTalks

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode 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

Méthode Description
Challenge ( System.Web.Http.Controllers.HttpActionContext actionContext ) : void

Send the Authentication Challenge request

Method Details

BasicAuthenticationFilter() public méthode

public BasicAuthenticationFilter ( ) : System
Résultat System

BasicAuthenticationFilter() public méthode

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
Résultat System

OnAuthorization() public méthode

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
Résultat void

OnAuthorizeUser() protected méthode

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
Résultat bool

ParseAuthorizationHeader() protected méthode

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