ChatConversationReader.ReadBatchAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
|