CookieAuthenticationOptions.Provider Property

The Provider may be assigned to an instance of an object created by the application at startup time. The middleware calls methods on the provider which give the application control at certain points where processing is occuring. If it is not provided a default instance is supplied which does nothing when the methods are called.

Namespace:  Microsoft.Owin.Security.Cookies
Assembly:  Microsoft.Owin.Security.Cookies (in Microsoft.Owin.Security.Cookies.dll)

Syntax

'Declaration
Public Property Provider As ICookieAuthenticationProvider 
    Get 
    Set
'Usage
Dim instance As CookieAuthenticationOptions 
Dim value As ICookieAuthenticationProvider 

value = instance.Provider

instance.Provider = value
public ICookieAuthenticationProvider Provider { get; set; }
public:
property ICookieAuthenticationProvider^ Provider {
    ICookieAuthenticationProvider^ get ();
    void set (ICookieAuthenticationProvider^ value);
}
member Provider : ICookieAuthenticationProvider with get, set
function get Provider () : ICookieAuthenticationProvider 
function set Provider (value : ICookieAuthenticationProvider)

Property Value

Type: Microsoft.Owin.Security.Cookies.ICookieAuthenticationProvider

See Also

Reference

CookieAuthenticationOptions Class

Microsoft.Owin.Security.Cookies Namespace