Click or drag to resize

MessagingServiceRetrieveActiveConversationsForContact Method

Retrieves the list of active conversations for a specified contact.

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public void RetrieveActiveConversationsForContact(
	ConversationRetrievalWatcher watcher,
	Contact contact
)

Parameters

watcher
Type: Avaya.ClientServicesConversationRetrievalWatcher
A ConversationRetrievalWatcher 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. A value of null will remove any currently installed watcher object, stopping all events from being sent to the previous watcher object.
contact
Type: Avaya.ClientServicesContact
The contact object for which matching conversations are to be retrieved.
Remarks
Note that unlike the RetrieveActiveConversations(ConversationRetrievalWatcher) method, once the data retrieval has completed, no further updates will be received through the supplied watcher argument.

To determine when it is appropriate to call the RetrieveActiveConversationsForContact method, the client application should query the SearchConversationCapability property.

See Also