StorageFileQueryResult.GetFilesAsync 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.
Overload
GetFilesAsync() |
Recupera un elenco di tutti i file nel set di risultati della query. |
GetFilesAsync(UInt32, UInt32) |
Recupera un elenco di file in un intervallo specificato. |
GetFilesAsync()
Recupera un elenco di tutti i file nel set di risultati della query.
public:
virtual IAsyncOperation<IVectorView<StorageFile ^> ^> ^ GetFilesAsync() = GetFilesAsync;
/// [Windows.Foundation.Metadata.Overload("GetFilesAsyncDefaultStartAndCount")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<StorageFile>> GetFilesAsync();
[Windows.Foundation.Metadata.Overload("GetFilesAsyncDefaultStartAndCount")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<StorageFile>> GetFilesAsync();
function getFilesAsync()
Public Function GetFilesAsync () As IAsyncOperation(Of IReadOnlyList(Of StorageFile))
Restituisce
Al termine di questo metodo, restituisce un elenco (tipo IVectorView) di file rappresentati dagli oggetti StorageFile .
- Attributi
Vedi anche
Si applica a
GetFilesAsync(UInt32, UInt32)
Recupera un elenco di file in un intervallo specificato.
public:
virtual IAsyncOperation<IVectorView<StorageFile ^> ^> ^ GetFilesAsync(unsigned int startIndex, unsigned int maxNumberOfItems) = GetFilesAsync;
/// [Windows.Foundation.Metadata.Overload("GetFilesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<StorageFile>> GetFilesAsync(uint32_t const& startIndex, uint32_t const& maxNumberOfItems);
[Windows.Foundation.Metadata.Overload("GetFilesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<StorageFile>> GetFilesAsync(uint startIndex, uint maxNumberOfItems);
function getFilesAsync(startIndex, maxNumberOfItems)
Public Function GetFilesAsync (startIndex As UInteger, maxNumberOfItems As UInteger) As IAsyncOperation(Of IReadOnlyList(Of StorageFile))
Parametri
- startIndex
-
UInt32
unsigned int
uint32_t
Indice in base zero del primo file da recuperare. Questo parametro è 0 per impostazione predefinita.
- maxNumberOfItems
-
UInt32
unsigned int
uint32_t
Numero massimo di file da recuperare. Usare il valore massimo di UInt32
(ad esempio uint.MaxValue
in C#, std::numeric_limits<uint32_t>::max()
in C++. Alcuni codici in C++ possono essere usati -1
se è consentita la conversione implicita) per recuperare tutti i file. Se l'intervallo contiene meno file rispetto al numero massimo, vengono restituiti tutti i file nell'intervallo.
Restituisce
Al termine di questo metodo, restituisce un elenco (tipo IVectorView) di file rappresentati dagli oggetti StorageFile .
- Attributi
Commenti
Usare questo overload per migliorare le prestazioni del sistema presentando una visualizzazione virtualizzata dei risultati della query che include solo il subset necessario di file. Ad esempio, se l'app visualizza molti file in una raccolta, è possibile usare questo intervallo per recuperare solo i file attualmente visibili all'utente.