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
FirstName
Gets or sets the first name of the contact.
public string FirstName { get; set; }
Property Value
IsWrappingTelephoneInQuotationMarks
Gets or sets whether telephone numbers should be wrapped in quotation marks when converted to string.
public bool IsWrappingTelephoneInQuotationMarks { get; set; }
Property Value
LastName
Gets or sets the last name of the contact.
public string LastName { get; set; }
Property Value
MiddleName
Gets or sets the middle name of the contact.
public string MiddleName { get; set; }
Property Value
Telephones
Gets or sets the collection of telephone numbers for the contact.
public IEnumerable<SunamoTelephone> Telephones { get; set; }
Property Value
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.