ChatConversationReader.ReadBatchAsync Method

Definition

Overloads

ReadBatchAsync()

Asynchronously reads batches of conversations from the ChatMessageStore.

ReadBatchAsync(Int32)

Asynchronously reads batches of conversations from the ChatMessageStore.

ReadBatchAsync()

Asynchronously reads batches of conversations from the ChatMessageStore.

public:
 virtual IAsyncOperation<IVectorView<ChatConversation ^> ^> ^ ReadBatchAsync() = ReadBatchAsync;
/// [Windows.Foundation.Metadata.Overload("ReadBatchAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<ChatConversation>> ReadBatchAsync();
[Windows.Foundation.Metadata.Overload("ReadBatchAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<ChatConversation>> ReadBatchAsync();
function readBatchAsync()
Public Function ReadBatchAsync () As IAsyncOperation(Of IReadOnlyList(Of ChatConversation))

Returns

The list of conversations.

Attributes

Windows requirements

App capabilities
chat blockedChatMessages chatSystem smsSend

See also

Applies to

ReadBatchAsync(Int32)

Asynchronously reads batches of conversations from the ChatMessageStore.

public:
 virtual IAsyncOperation<IVectorView<ChatConversation ^> ^> ^ ReadBatchAsync(int count) = ReadBatchAsync;
/// [Windows.Foundation.Metadata.Overload("ReadBatchWithCountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<ChatConversation>> ReadBatchAsync(int const& count);
[Windows.Foundation.Metadata.Overload("ReadBatchWithCountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<ChatConversation>> ReadBatchAsync(int count);
function readBatchAsync(count)
Public Function ReadBatchAsync (count As Integer) As IAsyncOperation(Of IReadOnlyList(Of ChatConversation))

Parameters

count
Int32

int

Specifies the size of the batch to read.

Returns

The list of conversations.

Attributes

Windows requirements

App capabilities
chat blockedChatMessages chatSystem smsSend

See also

Applies to