Table of Contents

Class SunamoVCard

Namespace
SunamoVcf
Assembly
SunamoVcf.dll

Represents a virtual contact card with name, telephone, and email information.

public class SunamoVCard
Inheritance
SunamoVCard
Inherited Members
Extension Methods

Properties

Emails

Gets or sets the collection of email addresses for the contact.

public IEnumerable<SunamoEmail> Emails { get; set; }

Property Value

IEnumerable<SunamoEmail>

FirstName

Gets or sets the first name of the contact.

public string FirstName { get; set; }

Property Value

string

IsWrappingTelephoneInQuotationMarks

Gets or sets whether telephone numbers should be wrapped in quotation marks when converted to string.

public bool IsWrappingTelephoneInQuotationMarks { get; set; }

Property Value

bool

LastName

Gets or sets the last name of the contact.

public string LastName { get; set; }

Property Value

string

MiddleName

Gets or sets the middle name of the contact.

public string MiddleName { get; set; }

Property Value

string

Telephones

Gets or sets the collection of telephone numbers for the contact.

public IEnumerable<SunamoTelephone> Telephones { get; set; }

Property Value

IEnumerable<SunamoTelephone>

Methods

EmailsToString()

Converts all email addresses to a comma-separated string.

public string EmailsToString()

Returns

string

A comma-separated string of email addresses.

TelephonesToString()

Converts all telephone numbers to a comma-separated string.

public string TelephonesToString()

Returns

string

A comma-separated string of telephone numbers.

ToString()

Returns a string representation of the contact including name, telephones, and emails.

public override string ToString()

Returns

string

A formatted string with all contact information.