共用方式為


ContentIndexer.CreateQuery 方法

定義

多載

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) 篩選。

propertiesToRetrieve

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

要擷取的屬性,由其 Windows 標準屬性名稱所指定。

傳回

查詢。

屬性

備註

呼叫 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) 篩選。

propertiesToRetrieve

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

要擷取的屬性,由其 Windows 標準屬性名稱所指定。

sortOrder

IIterable<SortEntry>

IEnumerable<SortEntry>

篩選結果的排序次序。

傳回

查詢。

屬性

另請參閱

適用於

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) 篩選。

propertiesToRetrieve

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

要擷取的屬性,由其 Windows 標準屬性名稱所指定。

sortOrder

IIterable<SortEntry>

IEnumerable<SortEntry>

篩選結果的排序次序。

searchFilterLanguage
String

Platform::String

winrt::hstring

用來剖析進階查詢語法 (AQS) 的語言,指定為 BCP-47 語言標籤。

傳回

查詢。

屬性

另請參閱

適用於