IAclHierarchyItemAsyncGetItemsByPropertyAsync 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: 11.3.10719
Syntax Task<IEnumerable<IAclHierarchyItemAsync>> GetItemsByPropertyAsync(
MatchBy matchBy,
IList<PropertyName> props
)
Task<IEnumerable<IAclHierarchyItemAsync>> GetItemsByPropertyAsync(
MatchBy matchBy,
IList<PropertyName> props
)
Function GetItemsByPropertyAsync (
matchBy As MatchBy,
props As IList(Of PropertyName)
) As Task(Of IEnumerable(Of IAclHierarchyItemAsync))
Function GetItemsByPropertyAsync (
matchBy As MatchBy,
props As IList(Of PropertyName)
) As Task(Of IEnumerable(Of IAclHierarchyItemAsync))
Task<IEnumerable<IAclHierarchyItemAsync^>^>^ GetItemsByPropertyAsync(
MatchBy matchBy,
IList<PropertyName>^ props
)
Task<IEnumerable<IAclHierarchyItemAsync^>^>^ GetItemsByPropertyAsync(
MatchBy matchBy,
IList<PropertyName>^ props
)
abstract GetItemsByPropertyAsync :
matchBy : MatchBy *
props : IList<PropertyName> -> Task<IEnumerable<IAclHierarchyItemAsync>>
abstract GetItemsByPropertyAsync :
matchBy : MatchBy *
props : IList<PropertyName> -> Task<IEnumerable<IAclHierarchyItemAsync>>
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:
TaskIEnumerableIAclHierarchyItemAsyncList of matching resources, each implementing
IAclHierarchyItemAsync.
See Also