ContactQueryResult.GetContactsAsync 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
GetContactsAsync() |
Récupère les contacts du magasin de contacts. |
GetContactsAsync(UInt32, UInt32) |
Récupère les contacts du magasin de contacts en fonction de l’index de départ spécifié et du nombre d’éléments à retourner. |
GetContactsAsync()
Récupère les contacts du magasin de contacts.
public:
virtual IAsyncOperation<IVectorView<StoredContact ^> ^> ^ GetContactsAsync() = GetContactsAsync;
/// [Windows.Foundation.Metadata.Overload("GetContactsAsync")]
IAsyncOperation<IVectorView<StoredContact>> GetContactsAsync();
[Windows.Foundation.Metadata.Overload("GetContactsAsync")]
public IAsyncOperation<IReadOnlyList<StoredContact>> GetContactsAsync();
function getContactsAsync()
Public Function GetContactsAsync () As IAsyncOperation(Of IReadOnlyList(Of StoredContact))
Retours
Une fois cette méthode terminée, elle retourne un IVectorView contenant des objets StoredContact . Si vous utilisez la programmation asynchrone, le type de résultat est une liste/vecteur en lecture seule d’éléments StoredContact . (Vous pouvez utiliser les API d’IVectorView<StoredContact> pour C++, les API de IReadOnlyList pour .NET.)
- Attributs
Configuration requise pour Windows
Fonctionnalités de l’application |
ID_CAP_CONTACTS [Windows Phone]
|
Voir aussi
S’applique à
GetContactsAsync(UInt32, UInt32)
Récupère les contacts du magasin de contacts en fonction de l’index de départ spécifié et du nombre d’éléments à retourner.
public:
virtual IAsyncOperation<IVectorView<StoredContact ^> ^> ^ GetContactsAsync(unsigned int startIndex, unsigned int maxNumberOfItems) = GetContactsAsync;
/// [Windows.Foundation.Metadata.Overload("GetContactsAsyncInRange")]
IAsyncOperation<IVectorView<StoredContact>> GetContactsAsync(uint32_t const& startIndex, uint32_t const& maxNumberOfItems);
[Windows.Foundation.Metadata.Overload("GetContactsAsyncInRange")]
public IAsyncOperation<IReadOnlyList<StoredContact>> GetContactsAsync(uint startIndex, uint maxNumberOfItems);
function getContactsAsync(startIndex, maxNumberOfItems)
Public Function GetContactsAsync (startIndex As UInteger, maxNumberOfItems As UInteger) As IAsyncOperation(Of IReadOnlyList(Of StoredContact))
Paramètres
- startIndex
-
UInt32
unsigned int
uint32_t
Index du premier contact à récupérer.
- maxNumberOfItems
-
UInt32
unsigned int
uint32_t
Nombre de contacts à récupérer.
Retours
Une fois cette méthode terminée, elle retourne un IVectorView contenant des objets StoredContact . Si vous utilisez la programmation asynchrone, le type de résultat est une liste/vecteur en lecture seule d’éléments StoredContact . (Vous pouvez utiliser les API d’IVectorView<StoredContact> pour C++, les API de IReadOnlyList pour .NET.)
- Attributs
Configuration requise pour Windows
Fonctionnalités de l’application |
ID_CAP_CONTACTS [Windows Phone]
|