Méthode | Description | |
---|---|---|
ReportProgress ( ITask task, string message, int percentComplete ) : void |
Called regularly during task execution to report progress.
|
|
TaskFailed ( ITask task, string reason ) : void |
Called when a task execution fails.
|
|
TaskStarted ( ITask task ) : void |
Called when a task starts.
|
|
TaskSucceeded ( ITask task ) : void |
Called when a task has finished execution successfully.
|
public ReportProgress ( ITask task, string message, int percentComplete ) : void | ||
task | ITask | The task. |
message | string | A message of progress. |
percentComplete | int | An estimation of percent complete. |
Résultat | void |
public TaskFailed ( ITask task, string reason ) : void | ||
task | ITask | The task. |
reason | string | Task failure reason. |
Résultat | void |
public TaskStarted ( ITask task ) : void | ||
task | ITask | The task. |
Résultat | void |
public TaskSucceeded ( ITask task ) : void | ||
task | ITask | The task. |
Résultat | void |