MutexSecurity.AccessRuleFactory Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new access control rule for the specified user, with the specified access rights, access control, and flags.
public:
override System::Security::AccessControl::AccessRule ^ AccessRuleFactory(System::Security::Principal::IdentityReference ^ identityReference, int accessMask, bool isInherited, System::Security::AccessControl::InheritanceFlags inheritanceFlags, System::Security::AccessControl::PropagationFlags propagationFlags, System::Security::AccessControl::AccessControlType type);
public override System.Security.AccessControl.AccessRule AccessRuleFactory (System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type);
override this.AccessRuleFactory : System.Security.Principal.IdentityReference * int * bool * System.Security.AccessControl.InheritanceFlags * System.Security.AccessControl.PropagationFlags * System.Security.AccessControl.AccessControlType -> System.Security.AccessControl.AccessRule
Public Overrides Function AccessRuleFactory (identityReference As IdentityReference, accessMask As Integer, isInherited As Boolean, inheritanceFlags As InheritanceFlags, propagationFlags As PropagationFlags, type As AccessControlType) As AccessRule
Parameters
- identityReference
- IdentityReference
An IdentityReference that identifies the user or group the rule applies to.
- accessMask
- Int32
A bitwise combination of MutexRights values specifying the access rights to allow or deny, cast to an integer.
- isInherited
- Boolean
Meaningless for named mutexes, because they have no hierarchy.
- inheritanceFlags
- InheritanceFlags
Meaningless for named mutexes, because they have no hierarchy.
- propagationFlags
- PropagationFlags
Meaningless for named mutexes, because they have no hierarchy.
- type
- AccessControlType
One of the AccessControlType values specifying whether the rights are allowed or denied.
Returns
A MutexAccessRule object representing the specified rights for the specified user.
Exceptions
accessMask
, inheritanceFlags
, propagationFlags
, or type
specifies an invalid value.
identityReference
is neither of type SecurityIdentifier, nor of a type such as NTAccount that can be converted to type SecurityIdentifier.
Remarks
The recommended way to create access control rules is to use the constructors of the MutexAccessRule class.
Note
Although inheritance and propagation flags are meaningless for named mutexes, it is still possible to specify them. This is not recommended, because it needlessly complicates the maintenance of rules, for example by interfering with the combination of rules that would otherwise be compatible.