Partager via


ChatConversationReader.ReadBatchAsync Méthode

Définition

Surcharges

ReadBatchAsync()

Lit de manière asynchrone des lots de conversations à partir du ChatMessageStore.

ReadBatchAsync(Int32)

Lit de manière asynchrone des lots de conversations à partir du ChatMessageStore.

ReadBatchAsync()

Lit de manière asynchrone des lots de conversations à partir du 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))

Retours

Liste des conversations.

Attributs

Configuration requise pour Windows

Fonctionnalités de l’application
chat blockedChatMessages chatSystem smsSend

Voir aussi

S’applique à

ReadBatchAsync(Int32)

Lit de manière asynchrone des lots de conversations à partir du 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))

Paramètres

count
Int32

int

Spécifie la taille du lot à lire.

Retours

Liste des conversations.

Attributs

Configuration requise pour Windows

Fonctionnalités de l’application
chat blockedChatMessages chatSystem smsSend

Voir aussi

S’applique à