Share via


ClearByTemplate Method (DACL Object)

Topic Last Modified: 2006-06-13

Clears from a DACL object the masks of a specified entity in a DACL template.

Applies To

DACL Object

Syntax


objResult  objDACL.ClearByTemplate(strName, objDACLTemplate, strNT4NameInDACLTemplate);

Parameters

  • strName
    A string value of an entity to match in the DACL template. This value can either be the domain and username of a user or group, or a predefined role such as an "Author."
  • objDACLTemplate
    A DACL object used as a template.
  • strNT4NameInDACLTemplate
    A string value of the name of an entity in the DACL template object used to compare with the DACL object being evaluated.

Return Value

An object that returns error codes and descriptions.

Remarks

This method is a wrapper for ModifyByTemplate method, with predefined action parameter as "Clear."

The following possible error messages can be returned:

  • Person not found.
  • Template entity not found.

Person not found. Template entity not found.

Example

var objLRoles = DaclLegacyRoles();
var objErr = objDacl.ClearByTemplate("MyDomain\User1", objLRoles, "Reviewer");
if(FAILED(objErr.number)){
   //something went wrong
}