Beispiel #1
0
 /// <summary>
 /// Returns an aggregated permission value by all passed permissions for the current user on every content in the whole subtree of the current content.
 /// Value is Denied if there is any denied passed permission,
 ///   Undefined if there is any undefined but there is no denied passed permission,
 ///   Allowed if every passed permission is allowed.
 /// </summary>
 /// <param name="permissionTypes">Set of related permissions. Cannot be null. Empty set means "allowed nothing".</param>
 public PermissionValue GetSubtreePermission(params PermissionType[] permissionTypes)
 {
     return(_securityHandler.GetSubtreePermission(_node, permissionTypes));
 }