Для изменения размера нажмите или перетащите

CommandExtensionsExecuteAllAsync(Command, TextReader, TextWriter, TextWriter) - метод

Continuously executes a command using specified IO streams until the input stream returns null or a CommandCanceledException was thrown.

Пространство имён:  Tessa.Platform.CommandLine
Сборка:  Tessa (в Tessa.dll) Версия: 3.5.0.19
Синтаксис
public static Task ExecuteAllAsync(
	this Command command,
	TextReader input,
	TextWriter output,
	TextWriter error
)

Параметры

command
Тип: Tessa.Platform.CommandLineCommand
The Command to execute.
input
Тип: System.IOTextReader
The TextReader that represents an input stream.
output
Тип: System.IOTextWriter
The TextWriter that represents an output stream.
error
Тип: System.IOTextWriter
The TextWriter that represents an error stream.

Возвращаемое значение

Тип: Task

Примечание об использовании

В Visual Basic и C# этот метод можно вызывать как метод экземпляра для любого объекта типа Command. При вызове метода для экземпляра следует опускать первый параметр. Дополнительные сведения см. в разделе Методы расширения (Visual Basic) или Методы расширения (Руководство по программированию в C#).
Исключения
ИсключениеУсловие
ArgumentNullExceptioncommand, input, output, or error is null.
Заметки
This method catches all exceptions of type CommandException and writes them to the standard error stream.
См. также