C# Класс TechTalks.API.Security.BasicAuthenticationFilter

Наследование: System.Web.Http.Filters.AuthorizationFilterAttribute
Показать файл Открыть проект

Открытые методы

Метод Описание
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

Защищенные методы

Метод Описание
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

Приватные методы

Метод Описание
Challenge ( System.Web.Http.Controllers.HttpActionContext actionContext ) : void

Send the Authentication Challenge request

Описание методов

BasicAuthenticationFilter() публичный Метод

public BasicAuthenticationFilter ( ) : System
Результат System

BasicAuthenticationFilter() публичный Метод

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
Результат System

OnAuthorization() публичный Метод

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
Результат void

OnAuthorizeUser() защищенный Метод

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
Результат bool

ParseAuthorizationHeader() защищенный Метод

Parses the Authorization header and creates user credentials
protected ParseAuthorizationHeader ( System.Web.Http.Controllers.HttpActionContext actionContext ) : BasicAuthenticationIdentity
actionContext System.Web.Http.Controllers.HttpActionContext
Результат BasicAuthenticationIdentity