DiscretionaryAcl Konstruktory

Definice

Inicializuje novou instanci DiscretionaryAcl třídy.

Přetížení

Name Description
DiscretionaryAcl(Boolean, Boolean, Int32)

Inicializuje novou instanci DiscretionaryAcl třídy se zadanými hodnotami.

DiscretionaryAcl(Boolean, Boolean, RawAcl)

Inicializuje novou instanci DiscretionaryAcl třídy se zadanými hodnotami ze zadaného RawAcl objektu.

DiscretionaryAcl(Boolean, Boolean, Byte, Int32)

Inicializuje novou instanci DiscretionaryAcl třídy se zadanými hodnotami.

DiscretionaryAcl(Boolean, Boolean, Int32)

Zdroj:
ACL.cs

Inicializuje novou instanci DiscretionaryAcl třídy se zadanými hodnotami.

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

Parametry

isContainer
Boolean

true pokud je nový DiscretionaryAcl objekt kontejnerem.

isDS
Boolean

true, pokud nový objekt DiscretionaryAcl je objekt adresáře Access Control List (ACL).

capacity
Int32

Počet položek Access Control (ACL) tohoto DiscretionaryAcl objektu může obsahovat. Toto číslo se použije jenom jako nápověda.

Platí pro

DiscretionaryAcl(Boolean, Boolean, RawAcl)

Zdroj:
ACL.cs

Inicializuje novou instanci DiscretionaryAcl třídy se zadanými hodnotami ze zadaného RawAcl objektu.

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

Parametry

isContainer
Boolean

true pokud je nový DiscretionaryAcl objekt kontejnerem.

isDS
Boolean

true, pokud nový objekt DiscretionaryAcl je objekt adresáře Access Control List (ACL).

rawAcl
RawAcl

Základní RawAcl objekt pro nový DiscretionaryAcl objekt. Zadejte null , že chcete vytvořit prázdný seznam ACL.

Poznámky

Položky Access Control (ACL) v objektu RawAcl jsou klonovány.

Platí pro

DiscretionaryAcl(Boolean, Boolean, Byte, Int32)

Zdroj:
ACL.cs

Inicializuje novou instanci DiscretionaryAcl třídy se zadanými hodnotami.

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

Parametry

isContainer
Boolean

true pokud je nový DiscretionaryAcl objekt kontejnerem.

isDS
Boolean

true, pokud nový objekt DiscretionaryAcl je objekt adresáře Access Control List (ACL).

revision
Byte

Úroveň revize nového DiscretionaryAcl objektu.

capacity
Int32

Počet položek Access Control (ACL) tohoto DiscretionaryAcl objektu může obsahovat. Toto číslo se použije jenom jako nápověda.

Platí pro