AuthorizeAttribute.Roles Property
Gets or sets the user roles.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Property Roles As String
Get
Set
public string Roles { get; set; }
public:
property String^ Roles {
String^ get ();
void set (String^ value);
}
Property Value
Type: System.String
The user roles.
Remarks
User roles are used to check authorization in an ASP.NET MVC application. A role defines privileges that are available to users who are assigned to that role. Users can belong to more than one role.
This property manages the roles that are authorized to access the associated controller or action method.