ContactAddress
ContactAddress
ContactAddress
ContactAddress
Class
Definition
Represents the address of a contact.
public : sealed class ContactAddress : IContactAddresspublic sealed class ContactAddress : IContactAddressPublic NotInheritable Class ContactAddress Implements IContactAddress// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
For info about how to handle app activation through contact actions, see Quickstart: Handling contact actions and Quickstart: Handling contact actions .
Constructors
ContactAddress() ContactAddress() ContactAddress() ContactAddress()
Initializes a new instance of a ContactAddress class.
public : ContactAddress()public ContactAddress()Public Sub New()// You can use this method in JavaScript.
Properties
Country Country Country Country
Gets and sets the country of a contact address. The maximum string length for the country is 1024 characters.
public : PlatForm::String Country { get; set; }public string Country { get; set; }Public ReadWrite Property Country As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The country of a contact address.
Description Description Description Description
Gets and sets the description of a contact address. The maximum string length for the description is 512 characters.
public : PlatForm::String Description { get; set; }public string Description { get; set; }Public ReadWrite Property Description As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The description of a contact address.
Kind Kind Kind Kind
Gets and sets the kind of contact address.
public : ContactAddressKind Kind { get; set; }public ContactAddressKind Kind { get; set; }Public ReadWrite Property Kind As ContactAddressKind// You can use this property in JavaScript.
A ContactAddressKind -typed value that indicates the type of contact address.
Locality Locality Locality Locality
Gets and sets the locality of a contact address. The maximum string length for the locality is 1024 characters.
public : PlatForm::String Locality { get; set; }public string Locality { get; set; }Public ReadWrite Property Locality As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The locality of a contact address.
PostalCode PostalCode PostalCode PostalCode
Gets and sets the postal code of a contact address. The maximum string length for the postal code is 1024 characters.
public : PlatForm::String PostalCode { get; set; }public string PostalCode { get; set; }Public ReadWrite Property PostalCode As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The postal code of a contact address.
Region Region Region Region
Gets and sets the region of a contact address. The maximum string length for the region is 1024 characters.
public : PlatForm::String Region { get; set; }public string Region { get; set; }Public ReadWrite Property Region As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The region of a contact address.
StreetAddress StreetAddress StreetAddress StreetAddress
Gets and sets the street address of a contact address. The maximum string length for the street address is 1024 characters.
public : PlatForm::String StreetAddress { get; set; }public string StreetAddress { get; set; }Public ReadWrite Property StreetAddress As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The street address of a contact address.