IOAuthBearerAuthenticationProvider Interface
Provides interface for OAuth bearer authentication provider.
Namespace: Microsoft.Owin.Security.OAuth
Assembly: Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)
Syntax
'Declaration
Public Interface IOAuthBearerAuthenticationProvider
'Usage
Dim instance As IOAuthBearerAuthenticationProvider
public interface IOAuthBearerAuthenticationProvider
public interface class IOAuthBearerAuthenticationProvider
type IOAuthBearerAuthenticationProvider = interface end
public interface IOAuthBearerAuthenticationProvider
The IOAuthBearerAuthenticationProvider type exposes the following members.
Methods
Name | Description | |
---|---|---|
RequestToken | Invoked before the ClaimsIdentity is created. Gives the application an opportinity to find the identity from a different location, adjust, or reject the token. | |
ValidateIdentity | Validates an OAuth identity with a given context. |
Top