17 references to ObjectMask
System.DirectoryServices.AccountManagement (17)
System\DirectoryServices\AccountManagement\SAM\SAMStoreCtx.cs (15)
45s_validPropertyMap = new Dictionary<string, ObjectMask>(); 47s_maskMap = new Dictionary<Type, ObjectMask>(); 48s_maskMap.Add(typeof(UserPrincipal), ObjectMask.User); 49s_maskMap.Add(typeof(ComputerPrincipal), ObjectMask.Computer); 50s_maskMap.Add(typeof(GroupPrincipal), ObjectMask.Group); 51s_maskMap.Add(typeof(Principal), ObjectMask.Principal); 78ObjectMask BitMask = 0; 84BitMask = ObjectMask.User; 90BitMask = ObjectMask.Computer; 96BitMask = ObjectMask.Group; 109BitMask = ObjectMask.Principal; 114BitMask = ObjectMask.None; 117ObjectMask currentMask; 1079ObjectMask value = ObjectMask.None;
System\DirectoryServices\AccountManagement\SAM\SAMStoreCtx_LoadStore.cs (2)
732private static readonly Dictionary<string, ObjectMask> s_validPropertyMap; 733private static readonly Dictionary<Type, ObjectMask> s_maskMap;