Share via


RoleEntity.UsersInRoles Property

 

Gets or sets the collection of users currently in the role.

Namespace:   System.Web.Providers.Entities
Assembly:  System.Web.Providers (in System.Web.Providers.dll)

Syntax

public virtual ICollection<UsersInRole> UsersInRoles { get; set; }
public:
property ICollection<UsersInRole^>^ UsersInRoles {
    virtual ICollection<UsersInRole^>^ get();
    virtual void set(ICollection<UsersInRole^>^ value);
}
abstract UsersInRoles : ICollection<UsersInRole> with get, set
override UsersInRoles : ICollection<UsersInRole> with get, set
Public Overridable Property UsersInRoles As ICollection(Of UsersInRole)

Property Value

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

The collection of users currently in the role.

See Also

RoleEntity Class
System.Web.Providers.Entities Namespace
ASP.NET Identity

Return to top