SecurityRoleAttribute 构造函数

定义

初始化 SecurityRoleAttribute 类的新实例并设置 Role 属性。

重载

SecurityRoleAttribute(String)

初始化 SecurityRoleAttribute 类的新实例并设置 Role 属性。

SecurityRoleAttribute(String, Boolean)

初始化 SecurityRoleAttribute 类的新实例并设置 RoleSetEveryoneAccess 属性。

SecurityRoleAttribute(String)

初始化 SecurityRoleAttribute 类的新实例并设置 Role 属性。

public:
 SecurityRoleAttribute(System::String ^ role);
public SecurityRoleAttribute (string role);
new System.EnterpriseServices.SecurityRoleAttribute : string -> System.EnterpriseServices.SecurityRoleAttribute
Public Sub New (role As String)

参数

role
String

应用程序、组件、接口或方法的安全角色。

示例

下面的代码示例演示如何使用此属性将角色与包含 ServicedComponent 类的程序集相关联。

// Create a security role for the component.
[assembly:SecurityRole("Manager")];
// Create a security role for the component.
[assembly: SecurityRole("Manager")]
' Create a security role for the component.
<Assembly: SecurityRole("Manager")>

适用于

SecurityRoleAttribute(String, Boolean)

初始化 SecurityRoleAttribute 类的新实例并设置 RoleSetEveryoneAccess 属性。

public:
 SecurityRoleAttribute(System::String ^ role, bool everyone);
public SecurityRoleAttribute (string role, bool everyone);
new System.EnterpriseServices.SecurityRoleAttribute : string * bool -> System.EnterpriseServices.SecurityRoleAttribute
Public Sub New (role As String, everyone As Boolean)

参数

role
String

应用程序、组件、接口或方法的安全角色。

everyone
Boolean

若要要求新创建的角色具有作为用户添加的“Everyone”用户组,则为 true;否则为 false

适用于