Class UserRole
Provides information about a user role.
Inheritance
System.Object
UserRole
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.ReportServer.Services.Models
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class UserRole
Constructors
UserRole()
Declaration
public UserRole()
Properties
Description
Specifies the description of the user role.
Declaration
public string Description { get; set; }
Property Value
System.String
|
Id
Specifies the role identifier.
Declaration
public string Id { get; set; }
Property Value
System.String
|
IsSystemRole
Indicates whether the user role is a system role or not.
Declaration
public bool IsSystemRole { get; set; }
Property Value
System.Boolean
|
Name
Specifies the user role name.
Declaration
public string Name { get; set; }
Property Value
System.String
|
UserIds
Returns a list of IDs of users that are assigned to the role.
Declaration
public List<string> UserIds { get; set; }
Property Value
System.Collections.Generic.List<System.String>
|