RawAcl Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the RawAcl class.
Overloads
RawAcl(Byte, Int32) |
Initializes a new instance of the RawAcl class with the specified revision level. |
RawAcl(Byte[], Int32) |
Initializes a new instance of the RawAcl class from the specified binary form. |
RawAcl(Byte, Int32)
Initializes a new instance of the RawAcl class with the specified revision level.
public:
RawAcl(System::Byte revision, int capacity);
public RawAcl (byte revision, int capacity);
new System.Security.AccessControl.RawAcl : byte * int -> System.Security.AccessControl.RawAcl
Public Sub New (revision As Byte, capacity As Integer)
Parameters
- revision
- Byte
The revision level of the new Access Control List (ACL).
- capacity
- Int32
The number of Access Control Entries (ACEs) this RawAcl object can contain. This number is to be used only as a hint.
Applies to
RawAcl(Byte[], Int32)
Initializes a new instance of the RawAcl class from the specified binary form.
public:
RawAcl(cli::array <System::Byte> ^ binaryForm, int offset);
public RawAcl (byte[] binaryForm, int offset);
new System.Security.AccessControl.RawAcl : byte[] * int -> System.Security.AccessControl.RawAcl
Public Sub New (binaryForm As Byte(), offset As Integer)
Parameters
- binaryForm
- Byte[]
An array of byte values that represent an Access Control List (ACL).
- offset
- Int32
The offset in the binaryForm
parameter at which to begin unmarshaling data.