Show / Hide Table of Contents

Class TaskListItem

Carrier object for TaskListItem. Services for the TaskListItem Carrier is available from the Appointment Agent.

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

Get TaskListItem 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
   var agent = new AppointmentAgent();
   var taskListItem = agent.GetTaskListItem( 123 );
}

Constructors

TaskListItem()

Default constructor

Declaration
public TaskListItem()
See Also
IAppointmentAgent

Properties

ColorIndex

JAP

Declaration
[DataMember]
public virtual ColorIndex ColorIndex { get; set; }
Property Value
Type Description
ColorIndex
See Also
IAppointmentAgent

DefaultVideomeetingStatus

Default video-meeting status for meetings created in SuperOffice CRM.

Declaration
[DataMember]
public virtual VideoMeetingStatus DefaultVideomeetingStatus { get; set; }
Property Value
Type Description
VideoMeetingStatus
See Also
IAppointmentAgent

Deleted

If true, the Task list item is deleted

Declaration
[DataMember]
public virtual bool Deleted { get; set; }
Property Value
Type Description
bool
See Also
IAppointmentAgent

Direction

1 = incoming, 2 = outgoing, see EAppntDirection

Declaration
[DataMember]
public virtual TaskDirection Direction { get; set; }
Property Value
Type Description
TaskDirection
See Also
IAppointmentAgent

IntentId

Link to the intention of this kind of task (used by SAINT)

Declaration
[DataMember]
public virtual int IntentId { get; set; }
Property Value
Type Description
int
See Also
IAppointmentAgent

IsDefaultAlldayEvent

True if all day event

Declaration
[DataMember]
public virtual bool IsDefaultAlldayEvent { get; set; }
Property Value
Type Description
bool
See Also
IAppointmentAgent

IsDefaultFree

True if free, false if busy

Declaration
[DataMember]
public virtual bool IsDefaultFree { get; set; }
Property Value
Type Description
bool
See Also
IAppointmentAgent

IsDefaultPublished

Published to external persons

Declaration
[DataMember]
public virtual bool IsDefaultPublished { get; set; }
Property Value
Type Description
bool
See Also
IAppointmentAgent

Rank

Rank order

Declaration
[DataMember]
public virtual short Rank { get; set; }
Property Value
Type Description
short
See Also
IAppointmentAgent

TaskListItemId

Primary key

Declaration
[DataMember]
public virtual int TaskListItemId { get; set; }
Property Value
Type Description
int
See Also
IAppointmentAgent

Tooltip

Tooltip or other description

Declaration
[DataMember]
public virtual string Tooltip { get; set; }
Property Value
Type Description
string
See Also
IAppointmentAgent

Type

1 = app, 2 = doc, 3 = email, 4 = fax, 5 = phone, 6 = todo - see EAppntRecordTypes

Declaration
[DataMember]
public virtual TaskType Type { get; set; }
Property Value
Type Description
TaskType
See Also
IAppointmentAgent

Value

The list item

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

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IAppointmentAgent

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
IAppointmentAgent

See Also

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