OAuthBearerAuthenticationOptions.Provider Property
The object provided by the application to process events raised by the bearer authentication middleware. The application may implement the interface fully, or it may create an instance of OAuthBearerAuthenticationProvider and assign delegates only to the events it wants to process.
Namespace: Microsoft.Owin.Security.OAuth
Assembly: Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)
Syntax
public IOAuthBearerAuthenticationProvider Provider { get; set; }
public:
property IOAuthBearerAuthenticationProvider^ Provider {
IOAuthBearerAuthenticationProvider^ get();
void set(IOAuthBearerAuthenticationProvider^ value);
}
member Provider : IOAuthBearerAuthenticationProvider with get, set
Public Property Provider As IOAuthBearerAuthenticationProvider
Property Value
Type: Microsoft.Owin.Security.OAuth.IOAuthBearerAuthenticationProvider
Returns IOAuthBearerAuthenticationProvider.
See Also
OAuthBearerAuthenticationOptions Class
Microsoft.Owin.Security.OAuth Namespace
Return to top