IStorageFolderQueryOperations.GetItemsAsync(UInt32, UInt32) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Recupera elementi di elenco come file, cartelle o filegroup, in un intervallo specificato (enumerazione superficiale).
public:
IAsyncOperation<IVectorView<IStorageItem ^> ^> ^ GetItemsAsync(unsigned int startIndex, unsigned int maxItemsToRetrieve);
/// [Windows.Foundation.Metadata.Overload("GetItemsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IStorageItem>> GetItemsAsync(uint32_t const& startIndex, uint32_t const& maxItemsToRetrieve);
[Windows.Foundation.Metadata.Overload("GetItemsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IStorageItem>> GetItemsAsync(uint startIndex, uint maxItemsToRetrieve);
function getItemsAsync(startIndex, maxItemsToRetrieve)
Public Function GetItemsAsync (startIndex As UInteger, maxItemsToRetrieve As UInteger) As IAsyncOperation(Of IReadOnlyList(Of IStorageItem))
Parametri
- startIndex
-
UInt32
unsigned int
uint32_t
Indice in base zero del primo elemento nell'intervallo. Il valore predefinito del parametro è 0.
- maxItemsToRetrieve
-
UInt32
unsigned int
uint32_t
Numero massimo di elementi da recuperare. Usare -1 per recuperare tutti gli elementi.
Restituisce
Al termine di questo metodo, restituisce un elenco (tipo IVectorView) di elementi. Ogni elemento è il tipo IStorageItem e rappresenta un file, una cartella o un gruppo di file.
In questo elenco i file sono rappresentati da oggetti StorageFile e le cartelle o i gruppi di file sono rappresentati da oggetti StorageFolder .
- Attributi