次の方法で共有


FileInformationFactory.GetItemsAsync メソッド

定義

オーバーロード

GetItemsAsync()

コレクション内のすべての項目に関する情報を含む IStorageItemInformation オブジェクトのコレクションを取得します。

GetItemsAsync(UInt32, UInt32)

コレクション内の項目の範囲に関する情報を含む IStorageItemInformation オブジェクトのコレクションを取得します。

GetItemsAsync()

コレクション内のすべての項目に関する情報を含む IStorageItemInformation オブジェクトのコレクションを取得します。

public:
 virtual IAsyncOperation<IVectorView<IStorageItemInformation ^> ^> ^ GetItemsAsync() = GetItemsAsync;
/// [Windows.Foundation.Metadata.Overload("GetItemsAsyncDefaultStartAndCount")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IStorageItemInformation>> GetItemsAsync();
[Windows.Foundation.Metadata.Overload("GetItemsAsyncDefaultStartAndCount")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IStorageItemInformation>> GetItemsAsync();
function getItemsAsync()
Public Function GetItemsAsync () As IAsyncOperation(Of IReadOnlyList(Of IStorageItemInformation))

戻り値

このメソッドが正常に完了すると、FileInformation オブジェクトと FolderInformation オブジェクトのリスト (IVectorView 型) が返されます。

属性

こちらもご覧ください

適用対象

GetItemsAsync(UInt32, UInt32)

コレクション内の項目の範囲に関する情報を含む IStorageItemInformation オブジェクトのコレクションを取得します。

public:
 virtual IAsyncOperation<IVectorView<IStorageItemInformation ^> ^> ^ GetItemsAsync(unsigned int startIndex, unsigned int maxItemsToRetrieve) = GetItemsAsync;
/// [Windows.Foundation.Metadata.Overload("GetItemsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IStorageItemInformation>> GetItemsAsync(uint32_t const& startIndex, uint32_t const& maxItemsToRetrieve);
[Windows.Foundation.Metadata.Overload("GetItemsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IStorageItemInformation>> GetItemsAsync(uint startIndex, uint maxItemsToRetrieve);
function getItemsAsync(startIndex, maxItemsToRetrieve)
Public Function GetItemsAsync (startIndex As UInteger, maxItemsToRetrieve As UInteger) As IAsyncOperation(Of IReadOnlyList(Of IStorageItemInformation))

パラメーター

startIndex
UInt32

unsigned int

uint32_t

範囲内の最初の項目の 0 から始まるインデックス。

maxItemsToRetrieve
UInt32

unsigned int

uint32_t

情報を取得する項目の最大数。

戻り値

このメソッドが正常に完了すると、FileInformation オブジェクトと FolderInformation オブジェクトのリスト (IVectorView 型) が返されます。

属性

こちらもご覧ください

適用対象