SystemAcl 생성자

정의

SystemAcl 클래스의 새 인스턴스를 초기화합니다.

오버로드

Name Description
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

trueSystemAcl 개체가 컨테이너이면 입니다.

isDS
Boolean

true 개체가 ACL(디렉터리 개체 Access Control List)이면 SystemAcl.

capacity
Int32

SystemAcl 개체에 포함될 수 있는 ACCESS CONTROL 항목 수입니다. 이 숫자는 힌트로만 사용됩니다.

적용 대상

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

trueSystemAcl 개체가 컨테이너이면 입니다.

isDS
Boolean

true 개체가 ACL(디렉터리 개체 Access Control List)이면 SystemAcl.

rawAcl
RawAcl

RawAcl 개체의 기본 SystemAcl 개체입니다. 빈 ACL을 만들도록 지정 null 합니다.

설명

RawAcl 개체의 Access Control 항목(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

trueSystemAcl 개체가 컨테이너이면 입니다.

isDS
Boolean

true 개체가 ACL(디렉터리 개체 Access Control List)이면 SystemAcl.

revision
Byte

SystemAcl 개체의 수정 수준입니다.

capacity
Int32

SystemAcl 개체에 포함될 수 있는 ACCESS CONTROL 항목 수입니다. 이 숫자는 힌트로만 사용됩니다.

적용 대상