IdentityUser<TKey, TLogin, TRole, TClaim>.Claims Property

 

Gets the collection of user claims.

Namespace:   Microsoft.AspNet.Identity.EntityFramework
Assembly:  Microsoft.AspNet.Identity.EntityFramework (in Microsoft.AspNet.Identity.EntityFramework.dll)

Syntax

public virtual ICollection<TClaim> Claims { get; private set; }
public:
property ICollection<TClaim>^ Claims {
    virtual ICollection<TClaim>^ get();
    private: virtual void set(ICollection<TClaim>^ value);
}
abstract Claims : ICollection<'TClaim> with get, private set
override Claims : ICollection<'TClaim> with get, private set
Public Overridable Property Claims As ICollection(Of TClaim)
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Generic.ICollection<TClaim>

See Also

IdentityUser<TKey, TLogin, TRole, TClaim> Class
Microsoft.AspNet.Identity.EntityFramework Namespace
ASP.NET Identity

Return to top