Freigeben über


ContactStore.FindContactsAsync Methode

Definition

Überlädt

FindContactsAsync()

Ruft die Liste aller Kontakte im Kontaktspeicher ab.

FindContactsAsync(String)

Ruft eine Liste von Contact-Objekten basierend auf dem angegebenen Suchtext ab.

FindContactsAsync()

Ruft die Liste aller Kontakte im Kontaktspeicher ab.

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

Gibt zurück

Ein asynchroner Vorgang, der eine Liste aller Contact-Objekte im Kontaktspeicher zurückgibt. Wenn Sie die asynchrone Programmierung verwenden, ist der Ergebnistyp eine schreibgeschützte Liste bzw. ein schreibgeschützter Vektor von Kontaktelementen . (Sie können APIs von IVectorView<Contact> für C++ und APIs von IReadOnlyList für .NET verwenden.)

Attribute

Windows-Anforderungen

App-Funktionen
contactsSystem

Weitere Informationen

Gilt für:

FindContactsAsync(String)

Ruft eine Liste von Contact-Objekten basierend auf dem angegebenen Suchtext ab.

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

Parameter

searchText
String

Platform::String

winrt::hstring

Die Suchzeichenfolge für den Vorgang. Die Abfrage versucht, den Namen (Name), die E-Mail-Adresse (E-Mail-Werte ) oder die Telefonnummer (Telefonwerte) eines Kontakts zuzuordnen.

Gibt zurück

Ein asynchroner Vorgang, der nach erfolgreichem Abschluss eine durch die Suche gefilterte Liste von Kontakten zurückgibt. Wenn Sie die asynchrone Programmierung verwenden, ist der Ergebnistyp eine schreibgeschützte Liste bzw. ein schreibgeschützter Vektor von Kontaktelementen . (Sie können APIs von IVectorView<Contact> für C++ und APIs von IReadOnlyList für .NET verwenden.)

Attribute

Windows-Anforderungen

App-Funktionen
contactsSystem

Weitere Informationen

Gilt für: