Show / Hide Table of Contents

Class ISN_CNContact

Class that represents an immutable value object for contact properties, such as the first name and phone numbers of a contact.

More filed can be added upon request CNContact

Inheritance
System.Object
ISN_CNContact
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SA.iOS.Contacts
Assembly: cs.temp.dll.dll
Syntax
public class ISN_CNContact

Constructors

ISN_CNContact(String, String)

Declaration
public ISN_CNContact(string givenName, string familyName)
Parameters
Type Name Description
System.String givenName
System.String familyName

Properties

DepartmentName

The name of the department associated with the contact.

Declaration
public string DepartmentName { get; }
Property Value
Type Description
System.String

Emails

An array of labeled email addresses for the contact.

Declaration
public List<string> Emails { get; }
Property Value
Type Description
List<System.String>

FamilyName

The family name of the contact. The family name is often known as the last name of the contact.

Declaration
public string FamilyName { get; }
Property Value
Type Description
System.String

GivenName

The given name of the contact. The given name is often known as the first name of the contact.

Declaration
public string GivenName { get; }
Property Value
Type Description
System.String

JobTitle

The contact’s job title.

Declaration
public string JobTitle { get; }
Property Value
Type Description
System.String

Nickname

Declaration
public string Nickname { get; }
Property Value
Type Description
System.String

Note

A note associated with a contact.

Declaration
public string Note { get; }
Property Value
Type Description
System.String

OrganizationName

The name of the organization associated with the contact.

Declaration
public string OrganizationName { get; set; }
Property Value
Type Description
System.String

Phones

An array of labeled phone numbers for a contact.

Declaration
public List<ISN_CNPhoneNumber> Phones { get; }
Property Value
Type Description
List<ISN_CNPhoneNumber>
In This Article
Back to top Generated by DocFX