ContentIndexer.GetIndexer 方法

定义

重载

GetIndexer()

获取现有的每应用索引或创建一个新索引(如有必要)。

GetIndexer(String)

获取具有指定名称的每个应用索引,或根据需要创建一个新索引。

GetIndexer()

获取现有的每应用索引或创建一个新索引(如有必要)。

public:
 static ContentIndexer ^ GetIndexer();
/// [Windows.Foundation.Metadata.Overload("GetIndexer")]
 static ContentIndexer GetIndexer();
[Windows.Foundation.Metadata.Overload("GetIndexer")]
public static ContentIndexer GetIndexer();
function getIndexer()
Public Shared Function GetIndexer () As ContentIndexer

返回

索引。

属性

另请参阅

适用于

GetIndexer(String)

获取具有指定名称的每个应用索引,或根据需要创建一个新索引。

public:
 static ContentIndexer ^ GetIndexer(Platform::String ^ indexName);
/// [Windows.Foundation.Metadata.Overload("GetIndexerWithName")]
 static ContentIndexer GetIndexer(winrt::hstring const& indexName);
[Windows.Foundation.Metadata.Overload("GetIndexerWithName")]
public static ContentIndexer GetIndexer(string indexName);
function getIndexer(indexName)
Public Shared Function GetIndexer (indexName As String) As ContentIndexer

参数

indexName
String

Platform::String

winrt::hstring

索引名称。

返回

索引。

属性

注解

应用可以提供 indexName 标识符,可用于为自己的查询对数据进行分区。 此标识符包含在项范围中,这意味着基于此范围进行分区比使用 属性进行筛选更快。 此方法的代价是无法跨多个范围轻松查询。

另请参阅

适用于