Class EMailAppointment
Information about an email appointment received as iCal data
Carrier object for EMailAppointment. Services for the EMailAppointment 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 EMailAppointment : Carrier
Constructors
EMailAppointment()
Default constructor
Declaration
public EMailAppointment()
See Also
Properties
Appointment
Appointment information
Declaration
[DataMember]
public virtual Appointment Appointment { get; set; }
Property Value
Type | Description |
---|---|
Appointment |
See Also
CalMethod
Method field stored in ICS file.
Declaration
[DataMember]
public virtual CalMethod CalMethod { get; set; }
Property Value
Type | Description |
---|---|
CalMethod |
See Also
Comment
Comment attached to the calendar event (accept / reject reason etc.)
Declaration
[DataMember]
public virtual string Comment { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
DtEnd
End date/time in ICS file.
Declaration
[DataMember]
public virtual DateTime DtEnd { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
DtStart
Start date/time in ICS file.
Declaration
[DataMember]
public virtual DateTime DtStart { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
Participants
List of participants in the iCal file - first one being the organizer
Declaration
[DataMember]
public virtual string[] Participants { get; set; }
Property Value
Type | Description |
---|---|
string[] |
See Also
Sequence
Sequence number in ICS file.
Declaration
[DataMember]
public virtual int Sequence { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Superseded
A newer invitation exists
Declaration
[DataMember]
public virtual bool Superseded { get; set; }
Property Value
Type | Description |
---|---|
bool |
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. |