IAclHierarchyItemGetItemsByPropertyAsync Method
IT Hit WebDAV Classes Reference
Find all resources in the subtree which have either Group or Owner (defined by matchBy
parameter) which identifies current user or group current user belongs to.
For example, this report can return all of the resources in a collection
hierarchy that are owned by the current user.
Namespace:
ITHit.WebDAV.Server.Acl
Assembly:
ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 13.3.13068
Syntax Task<IEnumerable<IAclHierarchyItem>> GetItemsByPropertyAsync(
MatchBy matchBy,
IList<PropertyName> props
)
Function GetItemsByPropertyAsync (
matchBy As MatchBy,
props As IList(Of PropertyName)
) As Task(Of IEnumerable(Of IAclHierarchyItem))
Task<IEnumerable<IAclHierarchyItem^>^>^ GetItemsByPropertyAsync(
MatchBy matchBy,
IList<PropertyName>^ props
)
abstract GetItemsByPropertyAsync :
matchBy : MatchBy *
props : IList<PropertyName> -> Task<IEnumerable<IAclHierarchyItem>>
Parameters
- matchBy
- Type: ITHit.WebDAV.Server.AclMatchBy
Identifies whether to search by owner or group. - props
- Type: System.Collections.GenericIListPropertyName
Properties requested for found items.
Return Value
Type:
TaskIEnumerableIAclHierarchyItemList of matching resources, each implementing
IAclHierarchyItem.
See Also