FileInformationFactory.GetFoldersAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetFoldersAsync() |
コレクション内のすべての StorageFolder オブジェクトに関する情報を含む FolderInformation オブジェクトのコレクションを取得します。 |
GetFoldersAsync(UInt32, UInt32) |
コレクション内の StorageFolder オブジェクトの範囲に関する情報を含む FolderInformation オブジェクトのコレクションを取得します。 |
GetFoldersAsync()
コレクション内のすべての StorageFolder オブジェクトに関する情報を含む FolderInformation オブジェクトのコレクションを取得します。
public:
virtual IAsyncOperation<IVectorView<FolderInformation ^> ^> ^ GetFoldersAsync() = GetFoldersAsync;
/// [Windows.Foundation.Metadata.Overload("GetFoldersAsyncDefaultStartAndCount")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<FolderInformation>> GetFoldersAsync();
[Windows.Foundation.Metadata.Overload("GetFoldersAsyncDefaultStartAndCount")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<FolderInformation>> GetFoldersAsync();
function getFoldersAsync()
Public Function GetFoldersAsync () As IAsyncOperation(Of IReadOnlyList(Of FolderInformation))
戻り値
このメソッドが正常に完了すると、FolderInformation オブジェクトのリスト (型 IVectorView) が返されます。
- 属性
こちらもご覧ください
適用対象
GetFoldersAsync(UInt32, UInt32)
コレクション内の StorageFolder オブジェクトの範囲に関する情報を含む FolderInformation オブジェクトのコレクションを取得します。
public:
virtual IAsyncOperation<IVectorView<FolderInformation ^> ^> ^ GetFoldersAsync(unsigned int startIndex, unsigned int maxItemsToRetrieve) = GetFoldersAsync;
/// [Windows.Foundation.Metadata.Overload("GetFoldersAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<FolderInformation>> GetFoldersAsync(uint32_t const& startIndex, uint32_t const& maxItemsToRetrieve);
[Windows.Foundation.Metadata.Overload("GetFoldersAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<FolderInformation>> GetFoldersAsync(uint startIndex, uint maxItemsToRetrieve);
function getFoldersAsync(startIndex, maxItemsToRetrieve)
Public Function GetFoldersAsync (startIndex As UInteger, maxItemsToRetrieve As UInteger) As IAsyncOperation(Of IReadOnlyList(Of FolderInformation))
パラメーター
- startIndex
-
UInt32
unsigned int
uint32_t
範囲内の最初の StorageFolder の 0 から始まるインデックス。
- maxItemsToRetrieve
-
UInt32
unsigned int
uint32_t
情報を取得する StorageFolder オブジェクトの最大数。
戻り値
このメソッドが正常に完了すると、FolderInformation オブジェクトのリスト (型 IVectorView) が返されます。
- 属性