Class ContactOrPersonFromEmail
Carrier object for ContactOrPersonFromEmail. Services for the ContactOrPersonFromEmail Carrier is available from the EMail Agent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class ContactOrPersonFromEmail : Carrier
Constructors
ContactOrPersonFromEmail()
Default constructor
Declaration
public ContactOrPersonFromEmail()
See Also
Properties
ContactCategory
Contact category
Declaration
[DataMember]
public virtual string ContactCategory { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ContactDepartment
Department
Declaration
[DataMember]
public virtual string ContactDepartment { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ContactId
The id of the contact
Declaration
[DataMember]
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ContactName
The contact name
Declaration
[DataMember]
public virtual string ContactName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
EmailAddress
The emailAddress
Declaration
[DataMember]
public virtual string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
FullName
The person fullname
Declaration
[DataMember]
public virtual string FullName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
PersonId
The id of the person
Declaration
[DataMember]
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
SortName
If person ? The person name, else contact name
Declaration
[DataMember]
public virtual string SortName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
string | The carrier contents. |