1 write to s_maskMap
System.DirectoryServices.AccountManagement (1)
System\DirectoryServices\AccountManagement\SAM\SAMStoreCtx.cs (1)
47
s_maskMap
= new Dictionary<Type, ObjectMask>();
5 references to s_maskMap
System.DirectoryServices.AccountManagement (5)
System\DirectoryServices\AccountManagement\SAM\SAMStoreCtx.cs (5)
48
s_maskMap
.Add(typeof(UserPrincipal), ObjectMask.User);
49
s_maskMap
.Add(typeof(ComputerPrincipal), ObjectMask.Computer);
50
s_maskMap
.Add(typeof(GroupPrincipal), ObjectMask.Group);
51
s_maskMap
.Add(typeof(Principal), ObjectMask.Principal);
1083
return ((
s_maskMap
[p.GetType()] & value) > 0 ? true : false);