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
public IAuthenticationSessionStore SessionStore { get; set; }
public:
property IAuthenticationSessionStore^ SessionStore {
IAuthenticationSessionStore^ get();
void set(IAuthenticationSessionStore^ value);
}
member SessionStore : IAuthenticationSessionStore with get, set
Public Property SessionStore As IAuthenticationSessionStore
Property Value
Type: Microsoft.Owin.Security.Cookies.IAuthenticationSessionStore
Returns IAuthenticationSessionStore.
See Also
CookieAuthenticationOptions Class
Microsoft.Owin.Security.Cookies Namespace
Return to top