Interface IMaintenanceConsole
Represents standard error and output streams as buffers.
Inherited Members
Namespace: DotNext.Maintenance.CommandLine.IO
Assembly: DotNext.MaintenanceServices.dll
Syntax
public interface IMaintenanceConsole : IConsole, IStandardOut, IStandardError, IStandardIn
Properties
| Edit this page View SourceError
Gets the buffer writer for standard error.
Declaration
IBufferWriter<char> Error { get; }
Property Value
Type | Description |
---|---|
IBufferWriter<char> |
Out
Gets the buffer writer for standard output.
Declaration
IBufferWriter<char> Out { get; }
Property Value
Type | Description |
---|---|
IBufferWriter<char> |
Session
Gets interaction session.
Declaration
IMaintenanceSession Session { get; }
Property Value
Type | Description |
---|---|
IMaintenanceSession |