StoredContact Constructors

Definition

Overloads

StoredContact(ContactStore)

Initializes a new instance of the StoredContact class.

StoredContact(ContactStore, ContactInformation)

Initializes a new instance of the StoredContact class and initializes the property values from the provided ContactInformation object.

StoredContact(ContactStore)

Initializes a new instance of the StoredContact class.

public:
 StoredContact(ContactStore ^ store);
 StoredContact(ContactStore const& store);
public StoredContact(ContactStore store);
function StoredContact(store)
Public Sub New (store As ContactStore)

Parameters

store
ContactStore

The contact store in which the contact should be created.

Windows requirements

App capabilities
ID_CAP_CONTACTS [Windows Phone]

See also

Applies to

StoredContact(ContactStore, ContactInformation)

Initializes a new instance of the StoredContact class and initializes the property values from the provided ContactInformation object.

public:
 StoredContact(ContactStore ^ store, ContactInformation ^ contact);
 StoredContact(ContactStore const& store, ContactInformation const& contact);
public StoredContact(ContactStore store, ContactInformation contact);
function StoredContact(store, contact)
Public Sub New (store As ContactStore, contact As ContactInformation)

Parameters

store
ContactStore

The contact store in which the contact should be created.

contact
ContactInformation

The contact information object with which the new contact object properties will be initialized.

Windows requirements

App capabilities
ID_CAP_CONTACTS [Windows Phone]

See also

Applies to