OAuthAuthorizationServerOptions.Provider Property

 

The object provided by the application to process events raised by the Authorization Server middleware. The application may implement the interface fully, or it may create an instance of OAuthAuthorizationServerProvider 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 IOAuthAuthorizationServerProvider Provider { get; set; }
public:
property IOAuthAuthorizationServerProvider^ Provider {
    IOAuthAuthorizationServerProvider^ get();
    void set(IOAuthAuthorizationServerProvider^ value);
}
member Provider : IOAuthAuthorizationServerProvider with get, set
Public Property Provider As IOAuthAuthorizationServerProvider

Property Value

Type: Microsoft.Owin.Security.OAuth.IOAuthAuthorizationServerProvider

Returns IOAuthAuthorizationServerProvider.

See Also

OAuthAuthorizationServerOptions Class
Microsoft.Owin.Security.OAuth Namespace

Return to top