MessagingServiceSearchConversations Method |
Searches the user's conversations using specified filter criteria.
Namespace:
Avaya.ClientServices
Assembly:
AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntaxpublic void SearchConversations(
SearchConversationsWatcher watcher,
string query,
string dateAfter,
bool searchParticipants,
bool searchSubject,
bool searchBody,
uint numResults
)
Parameters
- watcher
- Type: Avaya.ClientServicesSearchConversationsWatcher
A DataRetrievalWatcherT, E object, created by the application, to track the progress of the requested
operation. Prior to calling this method, the application should have installed event handlers on the
watcher object for the events it is interested in.
- query
- Type: SystemString
A query string to match. - dateAfter
- Type: SystemString
An optional ISO-8601 date string. When specified, this filters messages based on
each message's LastModifiedDate property. Leave empty if all messages are to be searched. - searchParticipants
- Type: SystemBoolean
Specify true if participants are to be searched, false otherwise. - searchSubject
- Type: SystemBoolean
Specify true if conversation subjects are to be searched, false otherwise. - searchBody
- Type: SystemBoolean
Specify true if message bodies are to be searched, false otherwise. - numResults
- Type: SystemUInt32
The number of messages to be returned.
If zero is specified, or it exceeds the maximum value as configured on the server,
the server's maximum value will be used.
See Also