Share via


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

 

Gets the collection of logins for the user.

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

Syntax

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

Property Value

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

See Also

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

Return to top