The Task type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
| AsT | Convenience method used to typecast to a subclass of Task. | |
| CloneFieldsToCore | Override to make copies of mutable non-value-type fields
(e.g. lists and other objects but not strings since they are immutable)
and store in the memberwiseClone instance.
The base implementation does nothing since the base class only has a string field.
| |
| CreateFromTemplate | Creates a new Task based on the template from the task registry. | |
| Execute | Executes the task. | |
| ExecuteCore | Implement this method to perform the task specific logic. | |
| GetProgressTitle | Gets the title text to show in progress dialogs when executing this task.
By default, this returns the Title.
Remarks Note, this might not be called on application thread. |
See Also