ContentIndexerQuery.GetAsync 方法

定义

重载

GetAsync()

对应用的索引内容属性运行查询。

GetAsync(UInt32, UInt32)

对应用的索引内容属性运行查询,并从结果集合中的指定开始索引返回指定数量的项。

GetAsync()

对应用的索引内容属性运行查询。

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

返回

此方法完成后,它将返回查询结果,表示为 IIndexableContent 实例的集合。

属性

另请参阅

适用于

GetAsync(UInt32, UInt32)

对应用的索引内容属性运行查询,并从结果集合中的指定开始索引返回指定数量的项。

public:
 virtual IAsyncOperation<IVectorView<IIndexableContent ^> ^> ^ GetAsync(unsigned int startIndex, unsigned int maxItems) = GetAsync;
/// [Windows.Foundation.Metadata.Overload("GetRangeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IIndexableContent>> GetAsync(uint32_t const& startIndex, uint32_t const& maxItems);
[Windows.Foundation.Metadata.Overload("GetRangeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IIndexableContent>> GetAsync(uint startIndex, uint maxItems);
function getAsync(startIndex, maxItems)
Public Function GetAsync (startIndex As UInteger, maxItems As UInteger) As IAsyncOperation(Of IReadOnlyList(Of IIndexableContent))

参数

startIndex
UInt32

unsigned int

uint32_t

要从结果集合获取的第一个项的索引。

maxItems
UInt32

unsigned int

uint32_t

要获取的最大项数。

返回

此方法完成后,它将返回查询结果,表示为 IndexableContent 实例的集合。

属性

注解

指定 startIndexmaxItems 对于虚拟化或分页访问搜索结果非常有用。

另请参阅

适用于