ChatConversationReader.ReadBatchAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
|