ClaimsPrincipal.Claims Property

Definition

Gets a collection that contains all of the claims from all of the claims identities associated with this claims principal.

public:
 virtual property System::Collections::Generic::IEnumerable<System::Security::Claims::Claim ^> ^ Claims { System::Collections::Generic::IEnumerable<System::Security::Claims::Claim ^> ^ get(); };
public virtual System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> Claims { get; }
member this.Claims : seq<System.Security.Claims.Claim>
Public Overridable ReadOnly Property Claims As IEnumerable(Of Claim)

Property Value

The claims associated with this principal.

Remarks

A claims principal has a collection of ClaimsIdentity objects that is accessible through the Identities property. Each ClaimsIdentity in the collection contains one or more claims. The Claims property returns all of the claims from all of the claims identities in this collection.

The Claims property can be examined by custom implementations of the ClaimsAuthenticationManager class to make authentication decisions or to filter, transform, or enrich an incoming claim set; by custom implementations of the ClaimsAuthorizationManager class to enforce authorization policy; or by application code to make authorization decisions or to customize user experience based on the claims present in the collection.

Applies to