SystemAcl コンストラクター

定義

SystemAcl クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
SystemAcl(Boolean, Boolean, Int32)

指定した値を使用して、 SystemAcl クラスの新しいインスタンスを初期化します。

SystemAcl(Boolean, Boolean, RawAcl)

指定したSystemAcl オブジェクトの指定した値を使用して、RawAcl クラスの新しいインスタンスを初期化します。

SystemAcl(Boolean, Boolean, Byte, Int32)

指定した値を使用して、 SystemAcl クラスの新しいインスタンスを初期化します。

SystemAcl(Boolean, Boolean, Int32)

ソース:
ACL.cs

指定した値を使用して、 SystemAcl クラスの新しいインスタンスを初期化します。

public:
 SystemAcl(bool isContainer, bool isDS, int capacity);
public SystemAcl(bool isContainer, bool isDS, int capacity);
new System.Security.AccessControl.SystemAcl : bool * bool * int -> System.Security.AccessControl.SystemAcl
Public Sub New (isContainer As Boolean, isDS As Boolean, capacity As Integer)

パラメーター

isContainer
Boolean

true 新しい SystemAcl オブジェクトがコンテナーの場合は %。

isDS
Boolean

新しい true オブジェクトがリスト (ACL) Access Controlディレクトリ オブジェクトの場合は、SystemAcl

capacity
Int32

このSystemAcl オブジェクトに含めることができるAccess Control エントリ (ACE) の数。 この数値はヒントとしてのみ使用されます。

適用対象

SystemAcl(Boolean, Boolean, RawAcl)

ソース:
ACL.cs

指定したSystemAcl オブジェクトの指定した値を使用して、RawAcl クラスの新しいインスタンスを初期化します。

public:
 SystemAcl(bool isContainer, bool isDS, System::Security::AccessControl::RawAcl ^ rawAcl);
public SystemAcl(bool isContainer, bool isDS, System.Security.AccessControl.RawAcl rawAcl);
new System.Security.AccessControl.SystemAcl : bool * bool * System.Security.AccessControl.RawAcl -> System.Security.AccessControl.SystemAcl
Public Sub New (isContainer As Boolean, isDS As Boolean, rawAcl As RawAcl)

パラメーター

isContainer
Boolean

true 新しい SystemAcl オブジェクトがコンテナーの場合は %。

isDS
Boolean

新しい true オブジェクトがリスト (ACL) Access Controlディレクトリ オブジェクトの場合は、SystemAcl

rawAcl
RawAcl

新しいRawAcl オブジェクトの基になるSystemAcl オブジェクト。 空の ACL を作成する null を指定します。

注釈

RawAcl オブジェクトのAccess Control エントリ (ACE) が複製されます。

適用対象

SystemAcl(Boolean, Boolean, Byte, Int32)

ソース:
ACL.cs

指定した値を使用して、 SystemAcl クラスの新しいインスタンスを初期化します。

public:
 SystemAcl(bool isContainer, bool isDS, System::Byte revision, int capacity);
public SystemAcl(bool isContainer, bool isDS, byte revision, int capacity);
new System.Security.AccessControl.SystemAcl : bool * bool * byte * int -> System.Security.AccessControl.SystemAcl
Public Sub New (isContainer As Boolean, isDS As Boolean, revision As Byte, capacity As Integer)

パラメーター

isContainer
Boolean

true 新しい SystemAcl オブジェクトがコンテナーの場合は %。

isDS
Boolean

新しい true オブジェクトがリスト (ACL) Access Controlディレクトリ オブジェクトの場合は、SystemAcl

revision
Byte

新しい SystemAcl オブジェクトのリビジョン レベル。

capacity
Int32

このSystemAcl オブジェクトに含めることができるAccess Control エントリ (ACE) の数。 この数値はヒントとしてのみ使用されます。

適用対象