ContactPickerUI.AddContact Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
AddContact(Contact) |
Fügt einen Kontakt hinzu. |
AddContact(String, Contact) |
Fügt einen Kontakt hinzu. Hinweis AddContact kann geändert oder nicht mehr für Releases verfügbar sein, nachdem Windows 8.1. Verwenden Sie stattdessen AddContact ohne die ID. |
AddContact(Contact)
Fügt einen Kontakt hinzu.
public:
virtual AddContactResult AddContact(Contact ^ contact) = AddContact;
AddContactResult AddContact(Contact const& contact);
public AddContactResult AddContact(Contact contact);
function addContact(contact)
Public Function AddContact (contact As Contact) As AddContactResult
Parameter
- contact
- Contact
Ein -Objekt, das die Informationen des Kontakts enthält.
Gibt zurück
Ein AddContactResult-typisierter Wert, der angibt, ob der Kontakt erfolgreich hinzugefügt wurde.
Windows-Anforderungen
App-Funktionen |
contactsSystem
|
Hinweise
Hinweis
Die Contact.Id-Eigenschaft muss festgelegt werden, wenn Sie AddContact aufrufen. Wenn Contact.Id nicht festgelegt ist, schlägt Ihre App fehl.
Weitere Informationen
Gilt für:
AddContact(String, Contact)
Fügt einen Kontakt hinzu.
Hinweis
AddContact kann geändert oder nicht mehr für Releases verfügbar sein, nachdem Windows 8.1. Verwenden Sie stattdessen AddContact ohne die ID.
public:
virtual AddContactResult AddContact(Platform::String ^ id, Contact ^ contact) = AddContact;
/// [Windows.Foundation.Metadata.Deprecated("AddContact may be altered or unavailable for releases after Windows 8.1. Instead, use AddContact without the ID.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, Windows.Foundation.UniversalApiContract)]
AddContactResult AddContact(winrt::hstring const& id, Contact const& contact);
/// [Windows.Foundation.Metadata.Deprecated("AddContact may be altered or unavailable for releases after Windows 8.1. Instead, use AddContact without the ID.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
AddContactResult AddContact(winrt::hstring const& id, Contact const& contact);
[Windows.Foundation.Metadata.Deprecated("AddContact may be altered or unavailable for releases after Windows 8.1. Instead, use AddContact without the ID.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, typeof(Windows.Foundation.UniversalApiContract))]
public AddContactResult AddContact(string id, Contact contact);
[Windows.Foundation.Metadata.Deprecated("AddContact may be altered or unavailable for releases after Windows 8.1. Instead, use AddContact without the ID.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
public AddContactResult AddContact(string id, Contact contact);
function addContact(id, contact)
Public Function AddContact (id As String, contact As Contact) As AddContactResult
Parameter
- id
-
String
Platform::String
winrt::hstring
Die ID für den Kontakt.
- contact
- Contact
Ein -Objekt, das die Informationen des Kontakts enthält.
Gibt zurück
Ein AddContactResult-typisierter Wert, der angibt, ob der Kontakt erfolgreich hinzugefügt wurde.
- Attribute
Windows-Anforderungen
App-Funktionen |
contactsSystem
|