IdentityRole<TKey, TUserRole>.Users Property

 

Gets the collection of users in the role.

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

Syntax

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

Property Value

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

See Also

IdentityRole<TKey, TUserRole> Class
Microsoft.AspNet.Identity.EntityFramework Namespace
ASP.NET Identity

Return to top