C# Класс Deeply.ConsoleExecutionLog

Console Execution Log implementation.
Наследование: IExecutionLog
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

ReportProgress() публичный Метод

Called regularly during task execution to report progress.
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.
Результат void

TaskFailed() публичный Метод

Called when a task execution fails.
public TaskFailed ( ITask task, string reason ) : void
task ITask The task.
reason string Task failure reason.
Результат void

TaskStarted() публичный Метод

Called when a task starts.
public TaskStarted ( ITask task ) : void
task ITask The task.
Результат void

TaskSucceeded() публичный Метод

Called when a task has finished execution successfully.
public TaskSucceeded ( ITask task ) : void
task ITask The task.
Результат void