SecurityMasks 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定用於檢查目錄物件之安全性資訊的可用選項。 這個列舉型別 (Enumeration) 要與 SecurityMasks 和 SecurityMasks 屬性搭配使用。
此列舉支援其成員值的位元組合。
public enum class SecurityMasks
[System.Flags]
public enum SecurityMasks
[<System.Flags>]
type SecurityMasks =
Public Enum SecurityMasks
- 繼承
- 屬性
欄位
Dacl | 4 | 讀取或寫入 Discretionary 存取控制清單 (DACL) 資料。 |
Group | 2 | 讀取或寫入群組資料。 |
None | 0 | 未讀取或寫入安全性資料。 |
Owner | 1 | 讀取或寫入擁有人資料。 |
Sacl | 8 | 讀取或寫入系統存取控制清單 (SACL) 資料。 |
範例
using System.DirectoryServices;
...
DirectorySearcher src = new DirectorySearcher("…");
src.PropertiesToLoad = new string[] {ntSecurityDescriptor,…};
src.SecurityMasks = SecurityMasks.Dacl | SecurityMasks.Owner;
SearchResultCollection res = src.FindAll();