3 instantiations of MutexSecurity
System.Diagnostics.EventLog (1)
src\runtime\src\libraries\Common\src\System\Diagnostics\NetFrameworkUtils.cs (1)
31MutexSecurity sec = new MutexSecurity();
System.Diagnostics.PerformanceCounter (1)
src\runtime\src\libraries\Common\src\System\Diagnostics\NetFrameworkUtils.cs (1)
31MutexSecurity sec = new MutexSecurity();
System.Threading.AccessControl (1)
System\Threading\ThreadingAclExtensions.cs (1)
28return new MutexSecurity(mutex.GetSafeWaitHandle(), AccessControlSections.Access | AccessControlSections.Owner | AccessControlSections.Group);
7 references to MutexSecurity
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
830[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.AccessControl.MutexSecurity))]
System.Diagnostics.EventLog (1)
src\runtime\src\libraries\Common\src\System\Diagnostics\NetFrameworkUtils.cs (1)
31MutexSecurity sec = new MutexSecurity();
System.Diagnostics.PerformanceCounter (1)
src\runtime\src\libraries\Common\src\System\Diagnostics\NetFrameworkUtils.cs (1)
31MutexSecurity sec = new MutexSecurity();
System.Threading.AccessControl (4)
System\Threading\MutexAcl.cs (2)
15/// <summary>Gets or creates <see cref="Mutex" /> instance, allowing a <see cref="MutexSecurity" /> to be optionally specified to set it during the mutex creation.</summary> 23public static unsafe Mutex Create(bool initiallyOwned, string? name, out bool createdNew, MutexSecurity? mutexSecurity)
System\Threading\ThreadingAclExtensions.cs (2)
26public static MutexSecurity GetAccessControl(this Mutex mutex) 31public static void SetAccessControl(this Mutex mutex, MutexSecurity mutexSecurity)