SecurityRoleAttribute コンストラクター

定義

SecurityRoleAttribute クラスの新しいインスタンスを初期化し、Role プロパティを設定します。

オーバーロード

SecurityRoleAttribute(String)

SecurityRoleAttribute クラスの新しいインスタンスを初期化し、Role プロパティを設定します。

SecurityRoleAttribute(String, Boolean)

SecurityRoleAttribute クラスの新しいインスタンスを初期化し、Role プロパティと SetEveryoneAccess プロパティを設定します。

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 クラスの新しいインスタンスを初期化し、Role プロパティと SetEveryoneAccess プロパティを設定します。

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

適用対象