다음을 통해 공유


ContentIndexerQuery.GetPropertiesAsync 메서드

정의

오버로드

GetPropertiesAsync()

속성 집합이 키-값 쌍인 앱의 속성 집합 컬렉션을 검색합니다.

GetPropertiesAsync(UInt32, UInt32)

앱의 인덱싱된 콘텐츠 속성에서 쿼리를 실행하고 결과 컬렉션의 지정된 시작 인덱스에서 지정된 수의 속성을 반환합니다.

GetPropertiesAsync()

속성 집합이 키-값 쌍인 앱의 속성 집합 컬렉션을 검색합니다.

public:
 virtual IAsyncOperation<IVectorView<IMapView<Platform::String ^, Platform::Object ^> ^> ^> ^ GetPropertiesAsync() = GetPropertiesAsync;
/// [Windows.Foundation.Metadata.Overload("GetPropertiesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IMapView<winrt::hstring, IInspectable const&>>> GetPropertiesAsync();
[Windows.Foundation.Metadata.Overload("GetPropertiesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<string,object>>> GetPropertiesAsync();
function getPropertiesAsync()
Public Function GetPropertiesAsync () As IAsyncOperation(Of IReadOnlyList(Of IReadOnlyDictionary(Of String, Object)))

반환

이 메서드가 완료되면 쿼리 결과를 PropertyValue 인스턴스의 컬렉션으로 반환합니다.

특성

추가 정보

적용 대상

GetPropertiesAsync(UInt32, UInt32)

앱의 인덱싱된 콘텐츠 속성에서 쿼리를 실행하고 결과 컬렉션의 지정된 시작 인덱스에서 지정된 수의 속성을 반환합니다.

public:
 virtual IAsyncOperation<IVectorView<IMapView<Platform::String ^, Platform::Object ^> ^> ^> ^ GetPropertiesAsync(unsigned int startIndex, unsigned int maxItems) = GetPropertiesAsync;
/// [Windows.Foundation.Metadata.Overload("GetPropertiesRangeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IMapView<winrt::hstring, IInspectable const&>>> GetPropertiesAsync(uint32_t const& startIndex, uint32_t const& maxItems);
[Windows.Foundation.Metadata.Overload("GetPropertiesRangeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<string,object>>> GetPropertiesAsync(uint startIndex, uint maxItems);
function getPropertiesAsync(startIndex, maxItems)
Public Function GetPropertiesAsync (startIndex As UInteger, maxItems As UInteger) As IAsyncOperation(Of IReadOnlyList(Of IReadOnlyDictionary(Of String, Object)))

매개 변수

startIndex
UInt32

unsigned int

uint32_t

결과 컬렉션에서 가져올 첫 번째 항목의 인덱스입니다.

maxItems
UInt32

unsigned int

uint32_t

가져올 최대 항목 수입니다.

반환

이 메서드가 완료되면 쿼리 결과를 PropertyValue 인스턴스의 컬렉션으로 반환합니다.

특성

설명

startIndexmaxItems를 지정하면 검색 결과의 가상화 또는 페이지를 매긴 액세스에 유용합니다.

추가 정보

적용 대상