CookieAuthenticationOptions.SessionStore Property

An optional container in which to store the identity across requests. When used, only a session identifier is sent to the client. This can be used to mitigate potential problems with very large identities.

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

Syntax

'Declaration
Public Property SessionStore As IAuthenticationSessionStore 
    Get 
    Set
'Usage
Dim instance As CookieAuthenticationOptions 
Dim value As IAuthenticationSessionStore 

value = instance.SessionStore

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

Property Value

Type: Microsoft.Owin.Security.Cookies.IAuthenticationSessionStore
Returns IAuthenticationSessionStore.

See Also

Reference

CookieAuthenticationOptions Class

Microsoft.Owin.Security.Cookies Namespace