Share via


Application.Users Property

 

Gets or sets the users of the application.

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

Syntax

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

Property Value

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

The users of the application.

See Also

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

Return to top