17 references to Group
Microsoft.Win32.Registry (2)
Microsoft\Win32\RegistryKey.cs (1)
592return GetAccessControl(AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group);
System\Security\AccessControl\RegistrySecurity.cs (1)
153persistRules |= AccessControlSections.Group;
System.IO.FileSystem.AccessControl (4)
System\IO\FileSystemAclExtensions.cs (3)
17return new DirectorySecurity(directoryInfo.FullName, AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group); 39return GetAccessControl(fileInfo, AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group); 75return new FileSecurity(handle, AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group);
System\Security\AccessControl\FileSystemSecurity.cs (1)
113persistRules |= AccessControlSections.Group;
System.Security.AccessControl (5)
System\Security\AccessControl\NativeObjectSecurity.cs (1)
200if ((includeSections & AccessControlSections.Group) != 0 && _securityDescriptor.Group != null)
System\Security\AccessControl\ObjectSecurity.cs (1)
96if ((includeSections & AccessControlSections.Group) != 0)
System\Security\AccessControl\ObjectSecurityT.cs (1)
294persistRules |= AccessControlSections.Group;
System\Security\AccessControl\SecurityDescriptor.cs (1)
220if ((includeSections & AccessControlSections.Group) != 0)
System\Security\AccessControl\Win32.cs (1)
89if ((accessControlSections & AccessControlSections.Group) != 0)
System.Threading.AccessControl (6)
System\Security\AccessControl\EventWaitHandleSecurity.cs (1)
168persistRules |= AccessControlSections.Group;
System\Security\AccessControl\MutexSecurity.cs (1)
162persistRules |= AccessControlSections.Group;
System\Security\AccessControl\SemaphoreSecurity.cs (1)
156persistRules |= AccessControlSections.Group;
System\Threading\ThreadingAclExtensions.cs (3)
16return new EventWaitHandleSecurity(handle.GetSafeWaitHandle(), AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group); 28return new MutexSecurity(mutex.GetSafeWaitHandle(), AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group); 40return new SemaphoreSecurity(semaphore.GetSafeWaitHandle(), AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group);