Class WindowsAdministratorsRole
Implementation of the Administrators virtual role.
Inherited Members
Namespace: EPiServer.Security
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
[ServiceConfiguration]
public class WindowsAdministratorsRole : VirtualRoleProviderBase
Remarks
This virtual role is a bit special, it is intended for Windows operating systems that have localized the
name of the Administrators group. This virtual role will do a name-independent check for the Windows Administrators
group. If the principal is not authenticated this role will always return false
.
Constructors
WindowsAdministratorsRole()
Declaration
public WindowsAdministratorsRole()
Properties
Name
Gets or sets the name of the Virtual Role
Declaration
public override string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
RoleName
Gets or sets the default name of this virtual role.
Declaration
public static string RoleName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
This value is set by the initialization engine to reflect the configuration of this role.
This name may differ in different instances of this class, only use this name to get the default role name.
Methods
IsInVirtualRole(IPrincipal, Object)
Determines whether the specified principal is a member of this role.
Declaration
public override bool IsInVirtualRole(IPrincipal principal, object context)
Parameters
Type | Name | Description |
---|---|---|
System.Security.Principal.IPrincipal | principal | The principal. |
System.Object | context | The context. |
Returns
Type | Description |
---|---|
System.Boolean |
|