ICalendarReportMultiGetAsync Method
IT Hit WebDAV Classes Reference
Gets a list of calendar files that correspont to the specified list of item paths.
Namespace:
ITHit.WebDAV.Server.CalDav
Assembly:
ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 13.3.13068
Syntax Task<IEnumerable<ICalendarFile>> MultiGetAsync(
IEnumerable<string> pathList,
IEnumerable<PropertyName> propNames
)
Function MultiGetAsync (
pathList As IEnumerable(Of String),
propNames As IEnumerable(Of PropertyName)
) As Task(Of IEnumerable(Of ICalendarFile))
Task<IEnumerable<ICalendarFile^>^>^ MultiGetAsync(
IEnumerable<String^>^ pathList,
IEnumerable<PropertyName>^ propNames
)
abstract MultiGetAsync :
pathList : IEnumerable<string> *
propNames : IEnumerable<PropertyName> -> Task<IEnumerable<ICalendarFile>>
Parameters
- pathList
- Type: System.Collections.GenericIEnumerableString
Calendar files path list. - propNames
- Type: System.Collections.GenericIEnumerablePropertyName
Properties requested by the client. You can use this as a hint about what properties will be called by
the Engine for each item that are returned from this method.
Return Value
Type:
TaskIEnumerableICalendarFileList of calendar files. Returns
null for any item that is not found.
Remarks
This method is called by the Engine during calendar-multiget call.
For each item from the pathList parameter return an item that corresponds to path or null if the item is not found.
See Also