ChatSearchReader.ReadBatchAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ReadBatchAsync() |
Returns a batch of found items matching the search criteria. |
ReadBatchAsync(Int32) |
Returns a batch of found items matching the search criteria. |
ReadBatchAsync()
Returns a batch of found items matching the search criteria.
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))
Returns
A list of items matching the search criteria.
- Attributes
Windows requirements
App capabilities |
chat
chatSystem
smsSend
|
See also
Applies to
ReadBatchAsync(Int32)
Returns a batch of found items matching the search criteria.
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))
Parameters
- count
-
Int32
int
The maximum number of items to return.
Returns
A list of items matching the search criteria.
- Attributes
Windows requirements
App capabilities |
chat
chatSystem
smsSend
|