ClaimsPrincipal.Identity Property

Definition

Gets the primary claims identity associated with this claims principal.

public:
 virtual property System::Security::Principal::IIdentity ^ Identity { System::Security::Principal::IIdentity ^ get(); };
public virtual System.Security.Principal.IIdentity Identity { get; }
public virtual System.Security.Principal.IIdentity? Identity { get; }
member this.Identity : System.Security.Principal.IIdentity
Public Overridable ReadOnly Property Identity As IIdentity

Property Value

The primary claims identity associated with this claims principal.

Implements

Remarks

By default, the framework prioritizes identities of type WindowsIdentity when returning the identity. The first WindowsIdentity found in the Identities collection is returned. If there is no WindowsIdentity in the collection, the first identity assignable from ClaimsIdentity is returned. If there is no ClaimsIdentity, null is returned. If the Identities collection is empty, an ArgumentNullException is thrown.

You can change the default behavior by setting the PrimaryIdentitySelector property to specify a delegate to be called to determine the identity.

Applies to

See also