Class Task
Task class
Represents the exchange task information.
public class Task : IDisposable
Constructors
| Name | Description |
|---|
| Task() | The default constructor. |
Properties
| Name | Description |
|---|
| Attachments { get; set; } | Gets or sets a collection of file attached to the task. |
| Attendees { get; set; } | Gets or sets the attendees. |
| Body { get; set; } | Gets or sets a task body. |
| DueDate { get; set; } | Gets or sets the date by which the user expects work on the task to be complete. |
| HtmlBody { get; set; } | Gets or sets a task html body. |
| Location { get; set; } | Gets or sets the location. |
| Method { get; set; } | Gets or sets iTIP methods associated with an task. |
| Organizer { get; set; } | Gets or sets the organizer. |
| PercentComplete { get; set; } | Gets or sets a pecent of task completion. |
| Priority { get; set; } | Gets or sets a task priority. |
| RelatedTo { get; set; } | Gets or sets a related UID |
| SequenceId { get; set; } | Gets or sets the sequence id. |
| StartDate { get; set; } | Gets or sets a start date of task. |
| Status { get; set; } | Gets or sets the status of the user’s progress on the task. |
| Subject { get; set; } | Gets or sets a task subject. |
| UniqueId { get; set; } | Gets or sets unique identifier |
Methods
| Name | Description |
|---|
| static Load(Stream) | Loads Task from the stream |
| static Load(string) | Loads Task from the file. Supported file formats: iCalendar A file path.A read Appointment. |
| Dispose() | Release all resources. |
| Request() | Requests the object. |
| virtual Save(Stream) | Saves current object to the given stream using MSG format. |
| virtual Save(string) | Saves current object into file using MSG format. |
| virtual Save(Stream, TaskSaveOptions) | Saves current object to the given stream using specified options. |
| virtual Save(string, TaskSaveOptions) | Saves current object into file using specified options. |
See Also