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