System.Threading.AccessControl
9.0.0-preview.2.24128.5
Prefix Reserved
See the version list below for details.
dotnet add package System.Threading.AccessControl --version 9.0.0-preview.2.24128.5
NuGet\Install-Package System.Threading.AccessControl -Version 9.0.0-preview.2.24128.5
<PackageReference Include="System.Threading.AccessControl" Version="9.0.0-preview.2.24128.5" />
paket add System.Threading.AccessControl --version 9.0.0-preview.2.24128.5
#r "nuget: System.Threading.AccessControl, 9.0.0-preview.2.24128.5"
// Install System.Threading.AccessControl as a Cake Addin #addin nuget:?package=System.Threading.AccessControl&version=9.0.0-preview.2.24128.5&prerelease // Install System.Threading.AccessControl as a Cake Tool #tool nuget:?package=System.Threading.AccessControl&version=9.0.0-preview.2.24128.5&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
, andEventWaitHandle
. - 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 | Versions 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. |
-
.NETFramework 4.6.2
- System.Security.AccessControl (>= 6.0.0)
- System.Security.Principal.Windows (>= 5.0.0)
-
.NETStandard 2.0
- System.Memory (>= 4.5.5)
- System.Security.AccessControl (>= 6.0.0)
- System.Security.Principal.Windows (>= 5.0.0)
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (53)
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 |
|
DistributedLock
Provides easy-to-use mutexes, reader-writer locks, and semaphores that can synchronize across processes and machines. This is an umbrella package that brings in the entire family of DistributedLock.* packages (e. g. DistributedLock.SqlServer) as references. Those packages can also be installed individually. |
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#
|