Class TaskListItem
Carrier object for TaskListItem. Services for the TaskListItem Carrier is available from the Appointment 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 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
Properties
ColorIndex
JAP
Declaration
[DataMember]
public virtual ColorIndex ColorIndex { get; set; }
Property Value
Type | Description |
---|---|
ColorIndex |
See Also
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
Deleted
If true, the Task list item is deleted
Declaration
[DataMember]
public virtual bool Deleted { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
Direction
1 = incoming, 2 = outgoing, see EAppntDirection
Declaration
[DataMember]
public virtual TaskDirection Direction { get; set; }
Property Value
Type | Description |
---|---|
TaskDirection |
See Also
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
IsDefaultAlldayEvent
True if all day event
Declaration
[DataMember]
public virtual bool IsDefaultAlldayEvent { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsDefaultFree
True if free, false if busy
Declaration
[DataMember]
public virtual bool IsDefaultFree { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
IsDefaultPublished
Published to external persons
Declaration
[DataMember]
public virtual bool IsDefaultPublished { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
Rank
Rank order
Declaration
[DataMember]
public virtual short Rank { get; set; }
Property Value
Type | Description |
---|---|
short |
See Also
TaskListItemId
Primary key
Declaration
[DataMember]
public virtual int TaskListItemId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Tooltip
Tooltip or other description
Declaration
[DataMember]
public virtual string Tooltip { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
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
Value
The list item
Declaration
[DataMember]
public virtual string Value { 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. |