ChatMessageChangeReader.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.
Retourne une liste de lots d’objets de modification de message de conversation à partir du suivi des modifications de la banque de messages.
public:
virtual IAsyncOperation<IVectorView<ChatMessageChange ^> ^> ^ ReadBatchAsync() = ReadBatchAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<ChatMessageChange>> ReadBatchAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<ChatMessageChange>> ReadBatchAsync();
function readBatchAsync()
Public Function ReadBatchAsync () As IAsyncOperation(Of IReadOnlyList(Of ChatMessageChange))
Retours
Opération asynchrone qui retourne une liste de modifications.
- Attributs
Configuration requise pour Windows
Fonctionnalités de l’application |
chat
blockedChatMessages
chatSystem
smsSend
|
Remarques
Cette méthode retourne un IReadOnlyList d’objets de classe ChatMessageChange . La méthode est appelée en tant qu’IAsyncOperation , comme illustré dans l’exemple suivant :
ChatMessageChangeTracker tracker = messageStore.ChangeTracker;
IReadOnlyList<ChatMessageChange> changeList = await tracker.GetChangeReader.ReadBatchAsync();