Partager via


ContactStore.FindContactsAsync Méthode

Définition

Surcharges

FindContactsAsync()

Récupère la liste de tous les contacts dans le magasin de contacts.

FindContactsAsync(String)

Récupère une liste d’objets Contact en fonction du texte de recherche fourni.

FindContactsAsync()

Récupère la liste de tous les contacts dans le magasin de contacts.

public:
 virtual IAsyncOperation<IVectorView<Contact ^> ^> ^ FindContactsAsync() = FindContactsAsync;
/// [Windows.Foundation.Metadata.Overload("FindContactsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<Contact>> FindContactsAsync();
[Windows.Foundation.Metadata.Overload("FindContactsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<Contact>> FindContactsAsync();
function findContactsAsync()
Public Function FindContactsAsync () As IAsyncOperation(Of IReadOnlyList(Of Contact))

Retours

Opération asynchrone qui retourne une liste de tous les objets Contact dans le magasin de contacts. Si vous utilisez la programmation asynchrone, le type de résultat est une liste/vecteur en lecture seule d’éléments Contact . (Vous pouvez utiliser les API du contact IVectorView< pour C++, les API de IReadOnlyList pour .NET.)>

Attributs

Configuration requise pour Windows

Fonctionnalités de l’application
contactsSystem

Voir aussi

S’applique à

FindContactsAsync(String)

Récupère une liste d’objets Contact en fonction du texte de recherche fourni.

public:
 virtual IAsyncOperation<IVectorView<Contact ^> ^> ^ FindContactsAsync(Platform::String ^ searchText) = FindContactsAsync;
/// [Windows.Foundation.Metadata.Overload("FindContactsWithSearchTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<Contact>> FindContactsAsync(winrt::hstring const& searchText);
[Windows.Foundation.Metadata.Overload("FindContactsWithSearchTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<Contact>> FindContactsAsync(string searchText);
function findContactsAsync(searchText)
Public Function FindContactsAsync (searchText As String) As IAsyncOperation(Of IReadOnlyList(Of Contact))

Paramètres

searchText
String

Platform::String

winrt::hstring

Chaîne de recherche de l’opération. La requête tente de faire correspondre le nom (Nom), l’adresse e-mail (valeurs e-mail ) ou le numéro de téléphone (valeurs téléphones ) d’un contact.

Retours

Opération asynchrone qui renvoie une liste filtrée de recherche de contacts en cas de réussite de l’exécution. Si vous utilisez la programmation asynchrone, le type de résultat est une liste/vecteur en lecture seule d’éléments Contact . (Vous pouvez utiliser les API du contact IVectorView< pour C++, les API de IReadOnlyList pour .NET.)>

Attributs

Configuration requise pour Windows

Fonctionnalités de l’application
contactsSystem

Voir aussi

S’applique à