Show / Hide Table of Contents

Class CliTaskHandler

Informs the user about the progress of tasks and ask questions using console output.

Inheritance
Object
TaskHandlerBase
CliTaskHandler
AnsiCliTaskHandler
Implements
ITaskHandler
Inherited Members
TaskHandlerBase.Ask(String, Nullable<Boolean>, String)
TaskHandlerBase.Output<T>(String, IEnumerable<T>)
TaskHandlerBase.Output<T>(String, NamedCollection<T>)
TaskHandlerBase.CancellationTokenSource
TaskHandlerBase.CancellationToken
TaskHandlerBase.Verbosity
Namespace: NanoByte.Common.Tasks
Assembly: NanoByte.Common.dll
Syntax
public class CliTaskHandler : TaskHandlerBase, ITaskHandler
Remarks

This class is thread-safe.

Constructors

CliTaskHandler()

Creates a new CLI task handler. Registers a Handler and a CancelKeyPress handler.

Declaration
public CliTaskHandler()

Properties

CredentialProvider

Used to ask the user or a keyring for NetworkCredentials for specific Uris; can be null.

Declaration
public override ICredentialProvider CredentialProvider { get; }
Property Value
Type Description
ICredentialProvider
Overrides
TaskHandlerBase.CredentialProvider

IsInteractive

Indicates whether the user can provide input.

Declaration
protected override bool IsInteractive { get; }
Property Value
Type Description
Boolean
Overrides
TaskHandlerBase.IsInteractive

Methods

AskInteractive(String, Boolean)

Asks the user a Yes/No/Cancel question.

Declaration
protected override bool AskInteractive(string question, bool defaultAnswer)
Parameters
Type Name Description
String question

The question and comprehensive information to help the user make an informed decision.

Boolean defaultAnswer

The default answer to preselect.

Returns
Type Description
Boolean

true if the user answered with 'Yes'; false if the user answered with 'No'.

Overrides
TaskHandlerBase.AskInteractive(String, Boolean)
Exceptions
Type Condition
OperationCanceledException

Throw if the user answered with 'Cancel'.

Dispose()

Unregisters the Handler and the CancelKeyPress handler.

Declaration
public override void Dispose()
Overrides
TaskHandlerBase.Dispose()

Error(Exception)

Displays an error message to the user.

Declaration
public override void Error(Exception exception)
Parameters
Type Name Description
Exception exception

The exception representing the error that occurred.

Overrides
TaskHandlerBase.Error(Exception)

LogHandler(LogSeverity, String, Exception)

Prints Log messages to the Console based on their LogSeverity and the current Verbosity level.

Declaration
protected virtual void LogHandler(LogSeverity severity, string message, Exception exception)
Parameters
Type Name Description
LogSeverity severity

The type/severity of the entry.

String message

The message text of the entry.

Exception exception

An optional exception associated with the entry.

Output(String, String)

Displays multi-line text to the user.

Declaration
public override void Output(string title, string message)
Parameters
Type Name Description
String title

A title for the message.

String message

The string to display. Trailing linebreaks are appropriately handled or ignored.

Overrides
TaskHandlerBase.Output(String, String)
Remarks

Implementations may close the UI as a side effect. Therefore this should be your last call on the handler.

RunTask(ITask)

Runs an ITask and tracks its progress. Returns once the task has been completed.

Declaration
public override void RunTask(ITask task)
Parameters
Type Name Description
ITask task

The task to be run. (Run(CancellationToken, ICredentialProvider, IProgress<TaskSnapshot>) or equivalent is called on it.)

Overrides
TaskHandlerBase.RunTask(ITask)
Exceptions
Type Condition
OperationCanceledException

The user canceled the task.

IOException

The task ended with IOError.

WebException

The task ended with WebError.

Implements

ITaskHandler

Extension Methods

UpdateUtils.To<TIn, TOut>(TIn, Func<TIn, TOut>)
JsonStorage.SaveJson<T>(T, Stream)
JsonStorage.SaveJson<T>(T, String)
JsonStorage.ToJsonString<T>(T)
JsonStorage.ReparseAsJson<T>(Object)
JsonStorage.ReparseAsJson<T>(Object, T)
XmlStorage.SaveXml(Object, Stream, String)
XmlStorage.SaveXml<T>(T, String, String)
XmlStorage.ToXmlString(Object, String)
ConversionUtils.ConvertToString<TType>(TType)
In This Article
Back to top Copyright Bastian Eicher