Class ContactDetails
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the details of a contact.
public class ContactDetails : BaseTypeSection
- Inheritance
-
ContactDetails
Constructors
ContactDetails()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.ContactDetails class.
public ContactDetails()
Properties
Address
Gets or sets the address of this contact.
public Address Address { get; set; }
Property Value
Department
Gets or sets the department in which the contact works.
public string Department { get; set; }
Property Value
Gets or sets the email address of this contact.
public string Email { get; set; }
Property Value
FaxNumber
Gets or sets the fax number for this contact.
public string FaxNumber { get; set; }
Property Value
JobTitle
Gets or sets the job title of the contact - for example "Director".
public string JobTitle { get; set; }
Property Value
MobileNumber
Gets or sets the mobile number of this contact.
public string MobileNumber { get; set; }
Property Value
TelephoneNumber
Gets or sets the telephone number for this contact.
public string TelephoneNumber { get; set; }
Property Value
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.ContactDetails object from the specified XML.
public static ContactDetails FromXml(string Xml)
Parameters
Xml
stringThe XML representation of the contact details.
Returns
- ContactDetails
A CENTREL.XIA.Configuration.Types.ContactDetails object from the specified XML.