StorageFolderQueryResult.GetFoldersAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetFoldersAsync() |
擷取結果集中) 的所有資料夾清單 (或檔案群組。 |
GetFoldersAsync(UInt32, UInt32) |
擷取指定範圍內的資料夾 (或檔案群組) 。 |
GetFoldersAsync()
擷取結果集中) 的所有資料夾清單 (或檔案群組。
public:
virtual IAsyncOperation<IVectorView<StorageFolder ^> ^> ^ GetFoldersAsync() = GetFoldersAsync;
/// [Windows.Foundation.Metadata.Overload("GetFoldersAsyncDefaultStartAndCount")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<StorageFolder>> GetFoldersAsync();
[Windows.Foundation.Metadata.Overload("GetFoldersAsyncDefaultStartAndCount")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<StorageFolder>> GetFoldersAsync();
function getFoldersAsync()
Public Function GetFoldersAsync () As IAsyncOperation(Of IReadOnlyList(Of StorageFolder))
傳回
當這個方法成功完成時,它會傳回類型 IVectorView) 由 StorageFolder 物件代表的資料夾或檔案群組清單 (。 您也可以列舉這些資料夾或檔案群組來擷取其內容。
- 屬性
另請參閱
適用於
GetFoldersAsync(UInt32, UInt32)
擷取指定範圍內的資料夾 (或檔案群組) 。
public:
virtual IAsyncOperation<IVectorView<StorageFolder ^> ^> ^ GetFoldersAsync(unsigned int startIndex, unsigned int maxNumberOfItems) = GetFoldersAsync;
/// [Windows.Foundation.Metadata.Overload("GetFoldersAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<StorageFolder>> GetFoldersAsync(uint32_t const& startIndex, uint32_t const& maxNumberOfItems);
[Windows.Foundation.Metadata.Overload("GetFoldersAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<StorageFolder>> GetFoldersAsync(uint startIndex, uint maxNumberOfItems);
function getFoldersAsync(startIndex, maxNumberOfItems)
Public Function GetFoldersAsync (startIndex As UInteger, maxNumberOfItems As UInteger) As IAsyncOperation(Of IReadOnlyList(Of StorageFolder))
參數
- startIndex
-
UInt32
unsigned int
uint32_t
要擷取之第一個資料夾之以零起始的索引。 這個參數的預設值是 0。
- maxNumberOfItems
-
UInt32
unsigned int
uint32_t
要擷取的資料夾或檔案群組數目上限。 使用 -1 擷取所有資料夾。 如果範圍包含的資料夾少於最大數目,則會傳回範圍中的所有資料夾。
傳回
當這個方法成功完成時,它會傳回類型 IVectorView) 由 StorageFolder 物件代表的資料夾或檔案群組清單 (。
- 屬性
備註
使用此多載來改善系統效能,方法是呈現只包含資料夾子集的查詢結果虛擬化檢視。 例如,如果您的應用程式在資源庫中顯示許多資料夾,您可以使用此範圍只擷取使用者目前可見的資料夾。