DiscretionaryAcl.AddAccess Method

Definition

Adds an Access Control Entry (ACE) with the specified settings to the current DiscretionaryAcl object.

Overloads

AddAccess(AccessControlType, SecurityIdentifier, ObjectAccessRule)

Adds an Access Control Entry (ACE) with the specified settings to the current DiscretionaryAcl object.

AddAccess(AccessControlType, SecurityIdentifier, Int32, InheritanceFlags, PropagationFlags)

Adds an Access Control Entry (ACE) with the specified settings to the current DiscretionaryAcl object.

AddAccess(AccessControlType, SecurityIdentifier, Int32, InheritanceFlags, PropagationFlags, ObjectAceFlags, Guid, Guid)

Adds an Access Control Entry (ACE) with the specified settings to the current DiscretionaryAcl object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the new ACE.

AddAccess(AccessControlType, SecurityIdentifier, ObjectAccessRule)

Adds an Access Control Entry (ACE) with the specified settings to the current DiscretionaryAcl object.

public:
 void AddAccess(System::Security::AccessControl::AccessControlType accessType, System::Security::Principal::SecurityIdentifier ^ sid, System::Security::AccessControl::ObjectAccessRule ^ rule);
public void AddAccess (System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAccessRule rule);
member this.AddAccess : System.Security.AccessControl.AccessControlType * System.Security.Principal.SecurityIdentifier * System.Security.AccessControl.ObjectAccessRule -> unit
Public Sub AddAccess (accessType As AccessControlType, sid As SecurityIdentifier, rule As ObjectAccessRule)

Parameters

accessType
AccessControlType

The type of access control (allow or deny) to add.

sid
SecurityIdentifier

The SecurityIdentifier for which to add an ACE.

rule
ObjectAccessRule

The ObjectAccessRule for the new access.

Applies to

AddAccess(AccessControlType, SecurityIdentifier, Int32, InheritanceFlags, PropagationFlags)

Adds an Access Control Entry (ACE) with the specified settings to the current DiscretionaryAcl object.

public:
 void AddAccess(System::Security::AccessControl::AccessControlType accessType, System::Security::Principal::SecurityIdentifier ^ sid, int accessMask, System::Security::AccessControl::InheritanceFlags inheritanceFlags, System::Security::AccessControl::PropagationFlags propagationFlags);
public void AddAccess (System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags);
member this.AddAccess : System.Security.AccessControl.AccessControlType * System.Security.Principal.SecurityIdentifier * int * System.Security.AccessControl.InheritanceFlags * System.Security.AccessControl.PropagationFlags -> unit
Public Sub AddAccess (accessType As AccessControlType, sid As SecurityIdentifier, accessMask As Integer, inheritanceFlags As InheritanceFlags, propagationFlags As PropagationFlags)

Parameters

accessType
AccessControlType

The type of access control (allow or deny) to add.

sid
SecurityIdentifier

The SecurityIdentifier for which to add an ACE.

accessMask
Int32

The access rule for the new ACE.

inheritanceFlags
InheritanceFlags

Flags that specify the inheritance properties of the new ACE.

propagationFlags
PropagationFlags

Flags that specify the inheritance propagation properties for the new ACE.

Remarks

This method can cause existing ACEs to be merged.

Applies to

AddAccess(AccessControlType, SecurityIdentifier, Int32, InheritanceFlags, PropagationFlags, ObjectAceFlags, Guid, Guid)

Adds an Access Control Entry (ACE) with the specified settings to the current DiscretionaryAcl object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the new ACE.

public:
 void AddAccess(System::Security::AccessControl::AccessControlType accessType, System::Security::Principal::SecurityIdentifier ^ sid, int accessMask, System::Security::AccessControl::InheritanceFlags inheritanceFlags, System::Security::AccessControl::PropagationFlags propagationFlags, System::Security::AccessControl::ObjectAceFlags objectFlags, Guid objectType, Guid inheritedObjectType);
public void AddAccess (System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, Guid objectType, Guid inheritedObjectType);
member this.AddAccess : System.Security.AccessControl.AccessControlType * System.Security.Principal.SecurityIdentifier * int * System.Security.AccessControl.InheritanceFlags * System.Security.AccessControl.PropagationFlags * System.Security.AccessControl.ObjectAceFlags * Guid * Guid -> unit
Public Sub AddAccess (accessType As AccessControlType, sid As SecurityIdentifier, accessMask As Integer, inheritanceFlags As InheritanceFlags, propagationFlags As PropagationFlags, objectFlags As ObjectAceFlags, objectType As Guid, inheritedObjectType As Guid)

Parameters

accessType
AccessControlType

The type of access control (allow or deny) to add.

sid
SecurityIdentifier

The SecurityIdentifier for which to add an ACE.

accessMask
Int32

The access rule for the new ACE.

inheritanceFlags
InheritanceFlags

Flags that specify the inheritance properties of the new ACE.

propagationFlags
PropagationFlags

Flags that specify the inheritance propagation properties for the new ACE.

objectFlags
ObjectAceFlags

Flags that specify if the objectType and inheritedObjectType parameters contain non-null values.

objectType
Guid

The identity of the class of objects to which the new ACE applies.

inheritedObjectType
Guid

The identity of the class of child objects which can inherit the new ACE.

Remarks

This method can cause existing ACEs to be merged.

Applies to