IAddressbookReportQueryAsync Method
IT Hit WebDAV Classes Reference
Returns a list of business card files that match specified filter.
Namespace:
ITHit.WebDAV.Server.CardDav
Assembly:
ITHit.WebDAV.Server (in ITHit.WebDAV.Server.dll) Version: 13.3.13068
Syntax Task<IEnumerable<ICardFile>> QueryAsync(
string rawQuery,
IEnumerable<PropertyName> propNames
)
Function QueryAsync (
rawQuery As String,
propNames As IEnumerable(Of PropertyName)
) As Task(Of IEnumerable(Of ICardFile))
Task<IEnumerable<ICardFile^>^>^ QueryAsync(
String^ rawQuery,
IEnumerable<PropertyName>^ propNames
)
abstract QueryAsync :
rawQuery : string *
propNames : IEnumerable<PropertyName> -> Task<IEnumerable<ICardFile>>
Parameters
- rawQuery
- Type: SystemString
Raw query sent by the client.
- 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:
TaskIEnumerableICardFileList of business card files. Returns
null for any item that is not found.
Remarks
This method is called by the Engine during addressbook-query call.
See Also