System.Threading.AccessControl 9.0.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package System.Threading.AccessControl --version 9.0.0
                    
NuGet\Install-Package System.Threading.AccessControl -Version 9.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Threading.AccessControl" Version="9.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="System.Threading.AccessControl" Version="9.0.0" />
                    
Directory.Packages.props
<PackageReference Include="System.Threading.AccessControl" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add System.Threading.AccessControl --version 9.0.0
                    
#r "nuget: System.Threading.AccessControl, 9.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=System.Threading.AccessControl&version=9.0.0
                    
Install System.Threading.AccessControl as a Cake Addin
#tool nuget:?package=System.Threading.AccessControl&version=9.0.0
                    
Install System.Threading.AccessControl as a Cake Tool

About

System.Threading.AccessControl provides types that enable you to control access to threading synchronization primitives. This includes the ability to control access to Mutexes, Semaphores, and Events using Windows Access Control Lists (ACLs).

Key Features

  • Extension methods to allow ACL modifications on Mutex, Semaphore, and EventWaitHandle.
  • Simplified security management for threading synchronization objects.

How to Use

using System.Security.AccessControl;
using System.Security.Principal;

// Create a string representing the current user.
string user = $"{Environment.UserDomainName}\\{Environment.UserName}";

// Create a security object that grants no access
MutexSecurity mutexSecurity = new MutexSecurity();

// Add a rule that grants the current user the right to enter or release the mutex
MutexAccessRule rule = new MutexAccessRule(user, MutexRights.Synchronize | MutexRights.Modify, AccessControlType.Allow);
mutexSecurity.AddAccessRule(rule);

// Add a rule that denies the current user the right to change permissions on the mutex
rule = new MutexAccessRule(user, MutexRights.ChangePermissions, AccessControlType.Deny);
mutexSecurity.AddAccessRule(rule);

// Display the rules in the security object
ShowSecurity(mutexSecurity);

// Add a rule that allows the current user the right to read permissions on the mutex
// This rule is merged with the existing Allow rule
rule = new MutexAccessRule(user, MutexRights.ReadPermissions, AccessControlType.Allow);
mutexSecurity.AddAccessRule(rule);

// Display the rules in the security object
ShowSecurity(mutexSecurity);

static void ShowSecurity(MutexSecurity security)
{
    Console.WriteLine("\nCurrent access rules:\n");

    foreach (MutexAccessRule ar in security.GetAccessRules(true, true, typeof(NTAccount)))
    {
        Console.WriteLine($"   User: {ar.IdentityReference}");
        Console.WriteLine($"   Type: {ar.AccessControlType}");
        Console.WriteLine($" Rights: {ar.MutexRights}");
        Console.WriteLine();
    }
}

/*
 * This code example produces output similar to following:
 * 
 * Current access rules:
 * 
 *    User: TestDomain\TestUser
 *    Type: Deny
 *  Rights: ChangePermissions
 * 
 *    User: TestDomain\TestUser
 *    Type: Allow
 *  Rights: Modify, Synchronize
 * 
 * 
 * Current access rules:
 * 
 *    User: TestDomain\TestUser
 *    Type: Deny
 *  Rights: ChangePermissions
 * 
 *    User: TestDomain\TestUser
 *    Type: Allow
 *  Rights: Modify, ReadPermissions, Synchronize
 */

Main Types

The main types provided by this library are:

  • System.Threading.EventWaitHandleAcl
  • System.Threading.MutexAcl
  • System.Threading.SemaphoreAcl
  • System.Threading.ThreadingAclExtensions

Additional Documentation

Feedback & Contributing

System.Threading.AccessControl is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (54)

Showing the top 5 NuGet packages that depend on System.Threading.AccessControl:

Package Downloads
Microsoft.Windows.Compatibility

This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard.

Microsoft.PowerShell.Commands.Utility

Runtime for hosting PowerShell

Examine.Lucene

A Lucene.Net search and indexing implementation for Examine

Microsoft.VisualStudio.Utilities

A member of the Visual Studio SDK

Microsoft.VisualStudio.Shell.Framework

A member of the Visual Studio SDK

GitHub repositories (21)

Showing the top 20 popular GitHub repositories that depend on System.Threading.AccessControl:

Repository Stars
PowerShell/PowerShell
PowerShell for every system!
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
gerardog/gsudo
Sudo for Windows
DGP-Studio/Snap.Hutao
实用的开源多功能原神工具箱 🧰 / Multifunctional Open-source Genshin Impact Toolkit 🧰
microsoft/AttackSurfaceAnalyzer
Attack Surface Analyzer can help you analyze your operating system's security configuration for changes during software installation.
dotnet/macios
.NET for iOS, Mac Catalyst, macOS, and tvOS provide open-source bindings of the Apple SDKs for use with .NET managed languages such as C#
madelson/DistributedLock
A .NET library for distributed synchronization
praeclarum/FuGetGallery
An alternative web UI for browsing nuget packages
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
RazorGenerator/RazorGenerator
A Custom Tool for Visual Studio that allows processing Razor files at design time instead of runtime, allowing them to be built into an assembly for simpler reuse and distribution.
Shazwazza/Examine
A .NET indexing and search engine powered by Lucene.Net
metalama/Metalama
A meta-programming framework for code generation, aspect-oriented programming, and architecture verification in large C# codebases.
EvanMulawski/FanControl.CorsairLink
The unofficial CorsairLink plugin for Fan Control. Adds support for Corsair controllers, liquid coolers, and power supplies. An alternative to iCUE.
haga-rak/fluxzy.core
Fast and fully streamed Man-On-The-Middle library and a CLI app to intercept, record, impersonate and alter HTTP/1.1, H2, websocket traffic over plain or secure channels.
valdisiljuconoks/LocalizationProvider
Database driven localization provider for .NET applications
Fody/Equals
Generate Equals, GetHashCode and operators methods from properties.
unchase/Unchase.OpenAPI.Connectedservice
:scroll: Visual Studio extension to generate OpenAPI (Swagger) web service reference.
Fody/AsyncErrorHandler
An extension for Fody to integrate error handling into async and TPL code
ITHit/UserFileSystemSamples
IT Hit User File System Engine samples in .NET/C#. Samples implement Virtual File System for Windows and Mac with synchronization support, on-demand loading, offline files, and Windows File Manager integration.
kamilbaczek/Modular-monolith-by-example
Modular monolith architecture example in .NET. Estimation Tool is tool to optimize estimation process in IT company.
Version Downloads Last updated
10.0.0-preview.3.25171.5 1,178 4/10/2025
10.0.0-preview.2.25163.2 2,522 3/18/2025
10.0.0-preview.1.25080.5 1,188 2/25/2025
9.0.4 24,599 4/8/2025
9.0.3 52,505 3/11/2025
9.0.2 87,497 2/11/2025
9.0.1 256,400 1/14/2025
9.0.0 396,890 11/12/2024
9.0.0-rc.2.24473.5 23,108 10/8/2024
9.0.0-rc.1.24431.7 8,234 9/10/2024
9.0.0-preview.7.24405.7 5,930 8/13/2024
9.0.0-preview.6.24327.7 505,241 7/9/2024
9.0.0-preview.5.24306.7 5,426 6/11/2024
9.0.0-preview.4.24266.19 2,721 5/21/2024
9.0.0-preview.3.24172.9 7,383 4/11/2024
9.0.0-preview.2.24128.5 939 3/12/2024
9.0.0-preview.1.24080.9 21,417 2/13/2024
8.0.0 8,492,918 11/14/2023
8.0.0-rc.2.23479.6 305,055 10/10/2023
8.0.0-rc.1.23419.4 9,696 9/12/2023
8.0.0-preview.7.23375.6 16,917 8/8/2023
8.0.0-preview.6.23329.7 1,345 7/11/2023
8.0.0-preview.5.23280.8 1,764 6/13/2023
8.0.0-preview.4.23259.5 9,864 5/16/2023
8.0.0-preview.3.23174.8 19,992 4/11/2023
8.0.0-preview.2.23128.3 5,312 3/14/2023
8.0.0-preview.1.23110.8 8,014 2/21/2023
7.0.1 3,566,437 1/10/2023
7.0.0 2,114,817 11/7/2022
7.0.0-rc.2.22472.3 9,547 10/11/2022
7.0.0-rc.1.22426.10 62,666 9/14/2022
7.0.0-preview.7.22375.6 10,566 8/9/2022
7.0.0-preview.6.22324.4 1,175 7/12/2022
7.0.0-preview.5.22301.12 1,339 6/14/2022
7.0.0-preview.4.22229.4 11,124 5/10/2022
7.0.0-preview.3.22175.4 2,565 4/13/2022
7.0.0-preview.2.22152.2 11,734 3/14/2022
7.0.0-preview.1.22076.8 3,008 2/17/2022
6.0.1 24,757 11/12/2024
6.0.0 13,421,448 11/8/2021
6.0.0-rc.2.21480.5 4,663 10/12/2021
6.0.0-rc.1.21451.13 8,747 9/14/2021
6.0.0-preview.7.21377.19 3,798 8/10/2021
6.0.0-preview.6.21352.12 5,972 7/14/2021
6.0.0-preview.5.21301.5 5,597 6/15/2021
6.0.0-preview.4.21253.7 19,554 5/24/2021
6.0.0-preview.3.21201.4 7,763 4/8/2021
6.0.0-preview.2.21154.6 8,142 3/11/2021
6.0.0-preview.1.21102.12 13,738 2/12/2021
5.0.0 28,164,032 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 10,124 10/13/2020
5.0.0-rc.1.20451.14 4,383 9/14/2020
5.0.0-preview.8.20407.11 9,246 8/25/2020
5.0.0-preview.7.20364.11 18,488 7/21/2020
5.0.0-preview.6.20305.6 3,528 6/25/2020
5.0.0-preview.5.20278.1 3,954 6/10/2020
5.0.0-preview.4.20251.6 8,007 5/18/2020
5.0.0-preview.3.20214.6 44,570 4/23/2020
5.0.0-preview.2.20160.6 21,069 4/2/2020
5.0.0-preview.1.20120.5 2,458 3/16/2020
4.7.0 18,885,543 12/3/2019
4.7.0-preview3.19551.4 3,902 11/13/2019
4.7.0-preview2.19523.17 15,401 11/1/2019
4.7.0-preview1.19504.10 9,957 10/15/2019
4.6.0 2,439,235 9/23/2019
4.6.0-rc1.19456.4 4,938 9/16/2019
4.6.0-preview9.19421.4 2,971 9/4/2019
4.6.0-preview9.19416.11 607 9/4/2019
4.6.0-preview8.19405.3 5,887 8/13/2019
4.6.0-preview7.19362.9 11,254 7/23/2019
4.6.0-preview6.19303.8 39,327 6/12/2019
4.6.0-preview6.19264.9 596 9/4/2019
4.6.0-preview5.19224.8 32,936 5/6/2019
4.6.0-preview4.19212.13 1,863 4/18/2019
4.6.0-preview3.19128.7 7,440 3/6/2019
4.6.0-preview.19073.11 16,097 1/29/2019
4.6.0-preview.18571.3 17,769 12/3/2018
4.5.0 39,542,581 5/29/2018
4.5.0-rc1 67,394 5/6/2018
4.5.0-preview2-26406-04 29,889 4/10/2018
4.5.0-preview1-26216-02 37,658 2/26/2018
4.5.0-preview1-25914-04 310,279 11/15/2017
4.4.0 6,110,022 8/11/2017
4.4.0-preview2-25405-01 1,438 6/27/2017
4.4.0-preview1-25305-02 4,654 5/9/2017
4.3.0 590,952 11/15/2016
4.3.0-preview1-24530-04 12,486 10/24/2016
4.0.0 3,562,314 6/27/2016
4.0.0-rc2-24027 19,765 5/16/2016
4.0.0-beta-23516 1,726 11/18/2015
4.0.0-beta-23409 1,379 10/15/2015
4.0.0-beta-23225 1,415 9/2/2015
4.0.0-beta-23123 1,618 7/29/2015
4.0.0-beta-23109 1,473 7/27/2015
4.0.0-beta-23019 1,575 6/30/2015
4.0.0-beta-22816 1,722 4/24/2015
4.0.0-beta-22605 2,210 2/13/2015