ChatConversationReader.ReadBatchAsync 方法

定义

重载

ReadBatchAsync()

ChatMessageStore 异步读取批对话。

ReadBatchAsync(Int32)

ChatMessageStore 异步读取批对话。

ReadBatchAsync()

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))

返回

对话列表。

属性

Windows 要求

应用功能
chat blockedChatMessages chatSystem smsSend

另请参阅

适用于

ReadBatchAsync(Int32)

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))

参数

count
Int32

int

指定要读取的批的大小。

返回

对话列表。

属性

Windows 要求

应用功能
chat blockedChatMessages chatSystem smsSend

另请参阅

适用于