FileInformationFactory.GetFoldersAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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