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
BCP-47 언어 태그로 지정된 AQS(고급 쿼리 구문 분석)를 구문 분석하는 데 사용되는 언어입니다.
반환
쿼리입니다.
- 특성
추가 정보
- CreateQuery(String, IIterable<String>, IIterable<SortEntry>)
- CreateQuery(String, IIterable<String>)
- GetPropertiesAsync