Partager via


ChatSearchReader.ReadBatchAsync Méthode

Définition

Surcharges

ReadBatchAsync()

Retourne un lot d’éléments trouvés correspondant aux critères de recherche.

ReadBatchAsync(Int32)

Retourne un lot d’éléments trouvés correspondant aux critères de recherche.

ReadBatchAsync()

Retourne un lot d’éléments trouvés correspondant aux critères de recherche.

public:
 virtual IAsyncOperation<IVectorView<IChatItem ^> ^> ^ ReadBatchAsync() = ReadBatchAsync;
/// [Windows.Foundation.Metadata.Overload("ReadBatchAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IChatItem>> ReadBatchAsync();
[Windows.Foundation.Metadata.Overload("ReadBatchAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IChatItem>> ReadBatchAsync();
function readBatchAsync()
Public Function ReadBatchAsync () As IAsyncOperation(Of IReadOnlyList(Of IChatItem))

Retours

Liste d’éléments correspondant aux critères de recherche.

Attributs

Configuration requise pour Windows

Fonctionnalités de l’application
chat chatSystem smsSend

Voir aussi

S’applique à

ReadBatchAsync(Int32)

Retourne un lot d’éléments trouvés correspondant aux critères de recherche.

public:
 virtual IAsyncOperation<IVectorView<IChatItem ^> ^> ^ ReadBatchAsync(int count) = ReadBatchAsync;
/// [Windows.Foundation.Metadata.Overload("ReadBatchWithCountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IChatItem>> ReadBatchAsync(int const& count);
[Windows.Foundation.Metadata.Overload("ReadBatchWithCountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IChatItem>> ReadBatchAsync(int count);
function readBatchAsync(count)
Public Function ReadBatchAsync (count As Integer) As IAsyncOperation(Of IReadOnlyList(Of IChatItem))

Paramètres

count
Int32

int

Nombre maximal d’éléments à retourner.

Retours

Liste d’éléments correspondant aux critères de recherche.

Attributs

Configuration requise pour Windows

Fonctionnalités de l’application
chat chatSystem smsSend

Voir aussi

S’applique à