Show / Hide Table of Contents

Class EMailSOInfo

Glue between SuperOffice data and an e-mail.

Carrier object for EMailSOInfo. Services for the EMailSOInfo Carrier is available from the EMail Agent.

Inheritance
object
EMailSOInfo
Namespace: SuperOfficeCRMServices
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public class EMailSOInfo : Carrier
Examples

Get EMailSOInfo 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
   var agent = new EMailAgent();
   var eMailSOInfo = agent.GetEMailSOInfo( 123 );
}

Constructors

EMailSOInfo()

Default constructor

Declaration
public EMailSOInfo()

Properties

AppointmentId

Primary key

Declaration
[DataMember]
public virtual int AppointmentId { get; set; }
Property Value
Type Description
int

Archived

Is this e-mail archived in SuperOffice

Declaration
[DataMember]
public virtual bool Archived { get; set; }
Property Value
Type Description
bool

ArchivedAt

The datetime when this email was archived

Declaration
[DataMember]
public virtual DateTime ArchivedAt { get; set; }
Property Value
Type Description
DateTime

ArchivedBy

The associate who archived this email

Declaration
[DataMember]
public virtual int ArchivedBy { get; set; }
Property Value
Type Description
int

ArchivedDisplayName

The full name of the associate who archived this email

Declaration
[DataMember]
public virtual string ArchivedDisplayName { get; set; }
Property Value
Type Description
string

DocumentId

Primary key

Declaration
[DataMember]
public virtual int DocumentId { get; set; }
Property Value
Type Description
int

ProjectId

Primary key

Declaration
[DataMember]
public virtual int ProjectId { get; set; }
Property Value
Type Description
int

SaleId

Primary key

Declaration
[DataMember]
public virtual int SaleId { get; set; }
Property Value
Type Description
int

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

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.

See Also

IEMailAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top