CookieValidateIdentityContext.Identity Property
Contains the claims identity arriving with the request. May be altered to change the details of the authenticated user.
Namespace: Microsoft.Owin.Security.Cookies
Assembly: Microsoft.Owin.Security.Cookies (in Microsoft.Owin.Security.Cookies.dll)
Syntax
public ClaimsIdentity Identity { get; private set; }
public:
property ClaimsIdentity^ Identity {
ClaimsIdentity^ get();
private: void set(ClaimsIdentity^ value);
}
member Identity : ClaimsIdentity with get, private set
Public Property Identity As ClaimsIdentity
Get
Private Set
End Property
Property Value
Type: System.Security.Claims.ClaimsIdentity
Returns ClaimsIdentity.
See Also
CookieValidateIdentityContext Class
Microsoft.Owin.Security.Cookies Namespace
Return to top