次の方法で共有


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

BCP-47 言語タグとして指定された高度なクエリ構文 (AQS) の解析に使用される言語。

戻り値

クエリです。

属性

こちらもご覧ください

適用対象