PipeSecurity.RemoveAuditRule(PipeAuditRule) 方法

定义

将审核规则从与当前 PipeSecurity 对象关联的系统访问控制列表 (SACL) 中移除。

public:
 bool RemoveAuditRule(System::IO::Pipes::PipeAuditRule ^ rule);
public bool RemoveAuditRule (System.IO.Pipes.PipeAuditRule rule);
override this.RemoveAuditRule : System.IO.Pipes.PipeAuditRule -> bool
Public Function RemoveAuditRule (rule As PipeAuditRule) As Boolean

参数

rule
PipeAuditRule

要移除的审核规则。

返回

true 如果删除了审核规则,则为 ;否则为 false

例外

rule 参数为 null

注解

方法RemoveAuditRule从当前PipeSecurity对象中删除所有匹配Deny的审核规则或所有匹配Allow的审核规则。 例如,可以使用此方法通过传递FileSystemAuditRule使用 Deny 值、Failure值和用户帐户创建的对象来删除用户的所有Deny审核规则。 执行此操作时, RemoveAuditRule 方法会删除指定 Failure 值或 Success 值的任何拒绝规则。

适用于