| CertSrvSecurityDescriptorRemoveAccessRule Method  | 
 
            Removes access rules that contain the same security identifier and access type as the specified access rule from the
            Discretionary Access Control List (DACL).
            
 
    Namespace: 
   SysadminsLV.PKI.Security.AccessControl
    Assembly:
   SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
 Syntax
Syntaxpublic bool RemoveAccessRule(
	IdentityReference identity,
	AccessControlType accessType
)
Public Function RemoveAccessRule ( 
	identity As IdentityReference,
	accessType As AccessControlType
) As Boolean
public:
bool RemoveAccessRule(
	IdentityReference^ identity, 
	AccessControlType accessType
)
member RemoveAccessRule : 
        identity : IdentityReference * 
        accessType : AccessControlType -> bool 
Parameters
- identity
- Type: System.Security.PrincipalIdentityReference
 The identity to which the access rule applies.
- accessType
- Type: System.Security.AccessControlAccessControlType
 The valid access control type.
Return Value
Type: 
BooleanTrue if matching ACE was found and removed, otherwise 
False.
 See Also
See Also