SecurityMasks Enum
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.
Specifies the available options for examining security information of a directory object. This enumeration is used with the SecurityMasks and SecurityMasks properties.
This enumeration supports a bitwise combination of its member values.
public enum class SecurityMasks
[System.Flags]
public enum SecurityMasks
[<System.Flags>]
type SecurityMasks =
Public Enum SecurityMasks
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Does not read or write security data. |
Owner | 1 | Reads or writes the owner data. |
Group | 2 | Reads or writes the group data. |
Dacl | 4 | Reads or writes the discretionary access-control list (DACL) data. |
Sacl | 8 | Reads or writes the system access-control list (SACL) data. |
Examples
using System.DirectoryServices;
...
DirectorySearcher src = new DirectorySearcher("…");
src.PropertiesToLoad = new string[] {ntSecurityDescriptor,…};
src.SecurityMasks = SecurityMasks.Dacl | SecurityMasks.Owner;
SearchResultCollection res = src.FindAll();