System.Threading.AccessControl 9.0.0-preview.6.24327.7

Prefix Reserved
This is a prerelease version of System.Threading.AccessControl.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.Threading.AccessControl --version 9.0.0-preview.6.24327.7                
NuGet\Install-Package System.Threading.AccessControl -Version 9.0.0-preview.6.24327.7                
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-preview.6.24327.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Threading.AccessControl --version 9.0.0-preview.6.24327.7                
#r "nuget: System.Threading.AccessControl, 9.0.0-preview.6.24327.7"                
#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.
// Install System.Threading.AccessControl as a Cake Addin
#addin nuget:?package=System.Threading.AccessControl&version=9.0.0-preview.6.24327.7&prerelease

// Install System.Threading.AccessControl as a Cake Tool
#tool nuget:?package=System.Threading.AccessControl&version=9.0.0-preview.6.24327.7&prerelease                

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. 
.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 (51)

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

Microsoft.VisualStudio.Utilities

A member of the Visual Studio SDK

Examine.Lucene

A Lucene.Net search and indexing implementation for Examine

Microsoft.VisualStudio.Shell.Framework

A member of the Visual Studio SDK

GitHub repositories (15)

Showing the top 5 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
microsoft/AttackSurfaceAnalyzer
Attack Surface Analyzer can help you analyze your operating system's security configuration for changes during software installation.
xamarin/xamarin-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#
Version Downloads Last updated
9.0.0-preview.7.24405.7 3,592 8/13/2024
9.0.0-preview.6.24327.7 8,872 7/9/2024
9.0.0-preview.5.24306.7 4,903 6/11/2024
9.0.0-preview.4.24266.19 2,484 5/21/2024
9.0.0-preview.3.24172.9 5,948 4/11/2024
9.0.0-preview.2.24128.5 750 3/12/2024
9.0.0-preview.1.24080.9 9,485 2/13/2024
8.0.0 2,762,692 11/14/2023
8.0.0-rc.2.23479.6 13,611 10/10/2023
8.0.0-rc.1.23419.4 9,552 9/12/2023
8.0.0-preview.7.23375.6 15,655 8/8/2023
8.0.0-preview.6.23329.7 1,240 7/11/2023
8.0.0-preview.5.23280.8 1,582 6/13/2023
8.0.0-preview.4.23259.5 9,689 5/16/2023
8.0.0-preview.3.23174.8 19,474 4/11/2023
8.0.0-preview.2.23128.3 4,870 3/14/2023
8.0.0-preview.1.23110.8 7,854 2/21/2023
7.0.1 2,999,713 1/10/2023
7.0.0 1,837,355 11/7/2022
7.0.0-rc.2.22472.3 9,070 10/11/2022
7.0.0-rc.1.22426.10 62,332 9/14/2022
7.0.0-preview.7.22375.6 10,334 8/9/2022
7.0.0-preview.6.22324.4 1,051 7/12/2022
7.0.0-preview.5.22301.12 1,225 6/14/2022
7.0.0-preview.4.22229.4 10,504 5/10/2022
7.0.0-preview.3.22175.4 2,419 4/13/2022
7.0.0-preview.2.22152.2 11,590 3/14/2022
7.0.0-preview.1.22076.8 2,874 2/17/2022
6.0.0 10,747,423 11/8/2021
6.0.0-rc.2.21480.5 4,478 10/12/2021
6.0.0-rc.1.21451.13 8,550 9/14/2021
6.0.0-preview.7.21377.19 3,612 8/10/2021
6.0.0-preview.6.21352.12 5,787 7/14/2021
6.0.0-preview.5.21301.5 5,462 6/15/2021
6.0.0-preview.4.21253.7 19,262 5/24/2021
6.0.0-preview.3.21201.4 7,462 4/8/2021
6.0.0-preview.2.21154.6 7,956 3/11/2021
6.0.0-preview.1.21102.12 11,909 2/12/2021
5.0.0 25,206,504 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 9,680 10/13/2020
5.0.0-rc.1.20451.14 4,217 9/14/2020
5.0.0-preview.8.20407.11 7,921 8/25/2020
5.0.0-preview.7.20364.11 18,252 7/21/2020
5.0.0-preview.6.20305.6 3,368 6/25/2020
5.0.0-preview.5.20278.1 3,770 6/10/2020
5.0.0-preview.4.20251.6 7,665 5/18/2020
5.0.0-preview.3.20214.6 39,645 4/23/2020
5.0.0-preview.2.20160.6 18,917 4/2/2020
5.0.0-preview.1.20120.5 2,313 3/16/2020
4.7.0 17,385,238 12/3/2019
4.7.0-preview3.19551.4 3,757 11/13/2019
4.7.0-preview2.19523.17 13,976 11/1/2019
4.7.0-preview1.19504.10 9,775 10/15/2019
4.6.0 2,311,132 9/23/2019
4.6.0-rc1.19456.4 4,727 9/16/2019
4.6.0-preview9.19421.4 2,792 9/4/2019
4.6.0-preview9.19416.11 476 9/4/2019
4.6.0-preview8.19405.3 5,624 8/13/2019
4.6.0-preview7.19362.9 11,029 7/23/2019
4.6.0-preview6.19303.8 38,887 6/12/2019
4.6.0-preview6.19264.9 476 9/4/2019
4.6.0-preview5.19224.8 31,782 5/6/2019
4.6.0-preview4.19212.13 1,725 4/18/2019
4.6.0-preview3.19128.7 7,016 3/6/2019
4.6.0-preview.19073.11 15,271 1/29/2019
4.6.0-preview.18571.3 16,943 12/3/2018
4.5.0 34,819,947 5/29/2018
4.5.0-rc1 63,992 5/6/2018
4.5.0-preview2-26406-04 28,335 4/10/2018
4.5.0-preview1-26216-02 36,058 2/26/2018
4.5.0-preview1-25914-04 304,046 11/15/2017
4.4.0 5,018,022 8/11/2017
4.4.0-preview2-25405-01 1,217 6/27/2017
4.4.0-preview1-25305-02 4,432 5/9/2017
4.3.0 539,186 11/15/2016
4.3.0-preview1-24530-04 12,268 10/24/2016
4.0.0 3,510,503 6/27/2016
4.0.0-rc2-24027 18,546 5/16/2016
4.0.0-beta-23516 1,491 11/18/2015
4.0.0-beta-23409 1,155 10/15/2015
4.0.0-beta-23225 1,190 9/2/2015
4.0.0-beta-23123 1,367 7/29/2015
4.0.0-beta-23109 1,252 7/27/2015
4.0.0-beta-23019 1,294 6/30/2015
4.0.0-beta-22816 1,446 4/24/2015
4.0.0-beta-22605 1,934 2/13/2015