Interface IPermissionInfo
Information about an applied instance of a permission.
Inherited Members
Namespace: DotNetNuke.Abstractions.Security.Permissions
Assembly: DotNetNuke.Abstractions.dll
Syntax
public interface IPermissionInfo : IPermissionDefinitionInfo
Properties
| Improve this Doc View SourceAllowAccess
Gets or sets a value indicating whether gets and sets a flag that indicates whether the user or role has permission.
Declaration
bool AllowAccess { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
DisplayName
Gets or sets the User's DisplayName.
Declaration
string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RoleId
Gets or sets the Role ID.
Declaration
int RoleId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
RoleName
Gets or sets the Role Name.
Declaration
string RoleName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UserId
Gets or sets the User ID.
Declaration
int UserId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Username
Gets or sets the User Name.
Declaration
string Username { get; set; }
Property Value
Type | Description |
---|---|
System.String |