次の方法で共有


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 の指定は、検索結果の仮想化またはページ分割されたアクセスに役立ちます。

こちらもご覧ください

適用対象