FileInformationFactory.GetFoldersAsync Méthode

Définition

Surcharges

GetFoldersAsync()

Récupère une collection d’objets FolderInformation qui contiennent des informations sur tous les objets StorageFolder d’une collection.

GetFoldersAsync(UInt32, UInt32)

Récupère une collection d’objets FolderInformation qui contiennent des informations sur une plage d’objets StorageFolder dans une collection.

GetFoldersAsync()

Récupère une collection d’objets FolderInformation qui contiennent des informations sur tous les objets StorageFolder d’une collection.

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))

Retours

Une fois cette méthode terminée, elle retourne la liste (type IVectorView) des objets FolderInformation .

Attributs

Voir aussi

S’applique à

GetFoldersAsync(UInt32, UInt32)

Récupère une collection d’objets FolderInformation qui contiennent des informations sur une plage d’objets StorageFolder dans une collection.

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))

Paramètres

startIndex
UInt32

unsigned int

uint32_t

Index de base zéro du premier StorageFolder de la plage.

maxItemsToRetrieve
UInt32

unsigned int

uint32_t

Nombre maximal d’objets StorageFolder pour ant récupérer des informations.

Retours

Une fois cette méthode terminée, elle retourne la liste (type IVectorView) des objets FolderInformation .

Attributs

Voir aussi

S’applique à