Click or drag to resize

SearchConversationRetrieveMessagesAfter Method

Retrieves a list of the conversation messages after the specified message. This list represents a list of contiguous messages which have been, or are being, downloaded.

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public override void RetrieveMessagesAfter(
	uint numMessagesToRetrieve,
	Message afterMessage
)

Parameters

numMessagesToRetrieve
Type: SystemUInt32
The maximum number messages to retrieve. The actual number retrieved may be the less than this if the maximum number of messages allowed per retrieval request, as configured on the server, is less than the specified value, or if the end of the message list is reached.
afterMessage
Type: Avaya.ClientServicesMessage
The starting point in the retrieval. Messages immediately after this one will be retrieved.
Remarks

This method is used in conjunction with RetrieveMessages(MessageRetrievalWatcher) method to retrieve older message content associated with the conversation. Please refer to the description of that method for detailed usage information.

To determine when it is appropriate to call the RetrieveMessagesAfter method, the client application should query the OlderContentCapability method.

See Also