ContentIndexerQuery.GetPropertiesAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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)))
반환
IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<String,Object>>>
IAsyncOperation<IVectorView<IMapView<Platform::String,Platform::Object>>>
IAsyncOperation<IVectorView<IMapView<winrt::hstring,IInspectable>>>
이 메서드가 완료되면 쿼리 결과를 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
가져올 최대 항목 수입니다.
반환
IAsyncOperation<IReadOnlyList<IReadOnlyDictionary<String,Object>>>
IAsyncOperation<IVectorView<IMapView<Platform::String,Platform::Object>>>
IAsyncOperation<IVectorView<IMapView<winrt::hstring,IInspectable>>>
이 메서드가 완료되면 쿼리 결과를 PropertyValue 인스턴스의 컬렉션으로 반환합니다.
- 특성
설명
startIndex 및 maxItems를 지정하면 검색 결과의 가상화 또는 페이지를 매긴 액세스에 유용합니다.