System
2.0.0.0
4.0.0.0
System.Security.AccessControl.AuditRule
System.Runtime.InteropServices.ComVisible(false)
The class is one of a set of classes that the .NET Framework provides for managing Windows access control security on named system semaphores. For an overview of these classes and their relationship to the underlying Windows access control structures, see .
Windows access control security is meaningful only for named system semaphores. If a object represents a local semaphore, access control is irrelevant.
To get a list of the audit rules currently applied to a named semaphore, use the method to get a object, and then use its method to obtain a collection of objects.
objects do not map one-to-one with access control entries in the underlying discretionary access control list (DACL). When you get the set of all audit rules for a semaphore, the set contains the minimum number of rules currently required to express all the access control entries.
The underlying access control entries change as you apply and remove rules. The information in rules is merged if possible, to maintain the smallest number of access control entries. Thus, when you read the current list of rules, it might not look exactly like the list of all the rules you have added.
Use objects to specify access rights to be audited for a user or group. To apply a rule to a named system semaphore, use the method to get the object. Modify the object by using its methods to add the rule, and then use the method to reattach the security object.
Changes you make to a object do not affect the access levels of the named semaphore until you call the method to assign the altered security object to the named semaphore.
objects are immutable. Security for a semaphore is modified using the methods of the class to add or remove rules; as you do this, the underlying access control entries are modified.
Security on synchronization objects is not supported for Windows 98 or Windows Millennium Edition.
Represents a set of access rights to be audited for a user or group. This class cannot be inherited.
Constructor
2.0.0.0
4.0.0.0
To be added.
To create an object from a string representing a user or group name, use the constructor.
Initializes a new instance of the class, specifying the user or group to audit, the rights to audit, and whether to audit success, failure, or both.
The user or group the rule applies to. Must be of type or a type such as that can be converted to type .
A bitwise combination of values specifying whether to audit success, failure, or both.
Property
2.0.0.0
4.0.0.0
System.Security.AccessControl.SemaphoreRights
To be added.
objects are immutable. You can create a new audit rule representing a different user, different rights, or a different combination of values, but you cannot modify an existing audit rule.
Gets the access rights affected by the audit rule.