PipeSecurity.RemoveAuditRuleSpecific(PipeAuditRule) Method

Definition

Removes the specified audit rule from the System Access Control List (SACL) that is associated with the current PipeSecurity object.

public:
 void RemoveAuditRuleSpecific(System::IO::Pipes::PipeAuditRule ^ rule);
public void RemoveAuditRuleSpecific (System.IO.Pipes.PipeAuditRule rule);
override this.RemoveAuditRuleSpecific : System.IO.Pipes.PipeAuditRule -> unit
Public Sub RemoveAuditRuleSpecific (rule As PipeAuditRule)

Parameters

rule
PipeAuditRule

The audit rule to remove.

Exceptions

The rule parameter is null.

Remarks

The RemoveAuditRuleSpecific method removes the specified matching Deny audit rule or the specified matching Allow audit rule from the current PipeSecurity object. For example, you can use this method to remove a specified Deny audit rule for a user by passing a FileSystemAuditRule object created using the Deny value, the Failure value, and a user account. When you do this, the RemoveAuditRuleSpecific method removes only a deny rule that specifies the Failure value. It does not remove any deny rules that specify the Success value.

Applies to