ChatConversationReader.ReadBatchAsync Metodo

Definizione

Overload

ReadBatchAsync()

Legge in modo asincrono batch di conversazioni da ChatMessageStore.

ReadBatchAsync(Int32)

Legge in modo asincrono batch di conversazioni da ChatMessageStore.

ReadBatchAsync()

Legge in modo asincrono batch di conversazioni da 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))

Restituisce

Elenco delle conversazioni.

Attributi

Requisiti Windows

Funzionalità dell'app
chat blockedChatMessages chatSystem smsSend

Vedi anche

Si applica a

ReadBatchAsync(Int32)

Legge in modo asincrono batch di conversazioni da 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))

Parametri

count
Int32

int

Specifica le dimensioni del batch da leggere.

Restituisce

Elenco delle conversazioni.

Attributi

Requisiti Windows

Funzionalità dell'app
chat blockedChatMessages chatSystem smsSend

Vedi anche

Si applica a