ContentIndexer.CreateQuery 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
CreateQuery(String, IIterable<String>) |
使用指定的搜索筛选器生成查询,并标识要检索的属性。 |
CreateQuery(String, IIterable<String>, IIterable<SortEntry>) |
使用指定的搜索筛选器、排序顺序生成查询,并标识要检索的属性。 |
CreateQuery(String, IIterable<String>, IIterable<SortEntry>, String) |
使用指定的搜索筛选器、排序顺序、筛选语言生成查询,并标识要检索的属性。 |
CreateQuery(String, IIterable<String>)
使用指定的搜索筛选器生成查询,并标识要检索的属性。
public:
virtual ContentIndexerQuery ^ CreateQuery(Platform::String ^ searchFilter, IIterable<Platform::String ^> ^ propertiesToRetrieve) = CreateQuery;
/// [Windows.Foundation.Metadata.Overload("CreateQuery")]
ContentIndexerQuery CreateQuery(winrt::hstring const& searchFilter, IIterable<winrt::hstring> const& propertiesToRetrieve);
[Windows.Foundation.Metadata.Overload("CreateQuery")]
public ContentIndexerQuery CreateQuery(string searchFilter, IEnumerable<string> propertiesToRetrieve);
function createQuery(searchFilter, propertiesToRetrieve)
Public Function CreateQuery (searchFilter As String, propertiesToRetrieve As IEnumerable(Of String)) As ContentIndexerQuery
参数
- searchFilter
-
String
Platform::String
winrt::hstring
高级查询语法 (要应用的 AQS) 筛选器。
要检索的属性,由其 Windows 规范属性名称指定。
返回
查询。
- 属性
注解
调用 GetPropertiesAsync 方法来运行查询。
另请参阅
- CreateQuery(String, IIterable<String>, IIterable<SortEntry>, String)
- CreateQuery(String, IIterable<String>, IIterable<SortEntry>)
- GetPropertiesAsync
适用于
CreateQuery(String, IIterable<String>, IIterable<SortEntry>)
使用指定的搜索筛选器、排序顺序生成查询,并标识要检索的属性。
public:
virtual ContentIndexerQuery ^ CreateQuery(Platform::String ^ searchFilter, IIterable<Platform::String ^> ^ propertiesToRetrieve, IIterable<SortEntry> ^ sortOrder) = CreateQuery;
/// [Windows.Foundation.Metadata.Overload("CreateQueryWithSortOrder")]
ContentIndexerQuery CreateQuery(winrt::hstring const& searchFilter, IIterable<winrt::hstring> const& propertiesToRetrieve, IIterable<SortEntry> const& sortOrder);
[Windows.Foundation.Metadata.Overload("CreateQueryWithSortOrder")]
public ContentIndexerQuery CreateQuery(string searchFilter, IEnumerable<string> propertiesToRetrieve, IEnumerable<SortEntry> sortOrder);
function createQuery(searchFilter, propertiesToRetrieve, sortOrder)
Public Function CreateQuery (searchFilter As String, propertiesToRetrieve As IEnumerable(Of String), sortOrder As IEnumerable(Of SortEntry)) As ContentIndexerQuery
参数
- searchFilter
-
String
Platform::String
winrt::hstring
高级查询语法 (AQS) 筛选器。
要检索的属性,由其 Windows 规范属性名称指定。
- sortOrder
筛选结果的排序顺序。
返回
查询。
- 属性
另请参阅
- CreateQuery(String, IIterable<String>, IIterable<SortEntry>, String)
- CreateQuery(String, IIterable<String>)
- GetPropertiesAsync
适用于
CreateQuery(String, IIterable<String>, IIterable<SortEntry>, String)
使用指定的搜索筛选器、排序顺序、筛选语言生成查询,并标识要检索的属性。
public:
virtual ContentIndexerQuery ^ CreateQuery(Platform::String ^ searchFilter, IIterable<Platform::String ^> ^ propertiesToRetrieve, IIterable<SortEntry> ^ sortOrder, Platform::String ^ searchFilterLanguage) = CreateQuery;
/// [Windows.Foundation.Metadata.Overload("CreateQueryWithSortOrderAndLanguage")]
ContentIndexerQuery CreateQuery(winrt::hstring const& searchFilter, IIterable<winrt::hstring> const& propertiesToRetrieve, IIterable<SortEntry> const& sortOrder, winrt::hstring const& searchFilterLanguage);
[Windows.Foundation.Metadata.Overload("CreateQueryWithSortOrderAndLanguage")]
public ContentIndexerQuery CreateQuery(string searchFilter, IEnumerable<string> propertiesToRetrieve, IEnumerable<SortEntry> sortOrder, string searchFilterLanguage);
function createQuery(searchFilter, propertiesToRetrieve, sortOrder, searchFilterLanguage)
Public Function CreateQuery (searchFilter As String, propertiesToRetrieve As IEnumerable(Of String), sortOrder As IEnumerable(Of SortEntry), searchFilterLanguage As String) As ContentIndexerQuery
参数
- searchFilter
-
String
Platform::String
winrt::hstring
高级查询语法 (要应用的 AQS) 筛选器。
要检索的属性,由其 Windows 规范属性名称指定。
- sortOrder
筛选结果的排序顺序。
- searchFilterLanguage
-
String
Platform::String
winrt::hstring
用于分析高级查询语法的语言, (AQS) (指定为 BCP-47 语言标记)。
返回
查询。
- 属性
另请参阅
- CreateQuery(String, IIterable<String>, IIterable<SortEntry>)
- CreateQuery(String, IIterable<String>)
- GetPropertiesAsync