SystemAcl 构造函数

定义

初始化 SystemAcl 类的新实例。

重载

名称 说明
SystemAcl(Boolean, Boolean, Int32)

使用指定的值初始化类的新实例 SystemAcl

SystemAcl(Boolean, Boolean, RawAcl)

使用指定对象中的指定SystemAcl值初始化类的新实例RawAcl

SystemAcl(Boolean, Boolean, Byte, Int32)

使用指定的值初始化类的新实例 SystemAcl

SystemAcl(Boolean, Boolean, Int32)

Source:
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

如果新 对象是容器,则为

isDS
Boolean

如果新的 true 对象是列表 访问控制(ACL)的目录对象,SystemAcl

capacity
Int32

SystemAcl对象可以包含的访问控制项数(ACE)。 此数字仅用于提示。

适用于

SystemAcl(Boolean, Boolean, RawAcl)

Source:
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

如果新 对象是容器,则为

isDS
Boolean

如果新的 true 对象是列表 访问控制(ACL)的目录对象,SystemAcl

rawAcl
RawAcl

RawAcl对象的基础SystemAcl对象。 指定 null 以创建空 ACL。

注解

RawAcl 对象中的访问控制项(ACE)将克隆。

适用于

SystemAcl(Boolean, Boolean, Byte, Int32)

Source:
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

如果新 对象是容器,则为

isDS
Boolean

如果新的 true 对象是列表 访问控制(ACL)的目录对象,SystemAcl

revision
Byte

SystemAcl 对象的修订级别。

capacity
Int32

SystemAcl对象可以包含的访问控制项数(ACE)。 此数字仅用于提示。

适用于