<PackageReference Include="System.Threading.AccessControl" Version="11.0.0-preview.5.26302.115" />

System.Security.AccessControl.EventWaitHandleSecurity

Represents the Windows access control security applied to a named system wait handle. This class cannot be inherited.
namespace System.Security.AccessControl { public sealed class EventWaitHandleSecurity : NativeObjectSecurity { public EventWaitHandleSecurity(); public void AddAccessRule(EventWaitHandleAccessRule rule); public void AddAuditRule(EventWaitHandleAuditRule rule); public bool RemoveAccessRule(EventWaitHandleAccessRule rule); public void RemoveAccessRuleAll(EventWaitHandleAccessRule rule); public void RemoveAccessRuleSpecific(EventWaitHandleAccessRule rule); public bool RemoveAuditRule(EventWaitHandleAuditRule rule); public void RemoveAuditRuleAll(EventWaitHandleAuditRule rule); public void RemoveAuditRuleSpecific(EventWaitHandleAuditRule rule); public void ResetAccessRule(EventWaitHandleAccessRule rule); public void SetAccessRule(EventWaitHandleAccessRule rule); public void SetAuditRule(EventWaitHandleAuditRule rule); } }