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
)
<ExtensionAttribute>
Public Shared Function ExecuteAllAsync (
command As Command,
input As TextReader,
output As TextWriter,
error As TextWriter
) As Task
public:
[ExtensionAttribute]
static Task^ ExecuteAllAsync(
Command^ command,
TextReader^ input,
TextWriter^ output,
TextWriter^ error
)
[<ExtensionAttribute>]
static member ExecuteAllAsync :
command : Command *
input : TextReader *
output : TextWriter *
error : TextWriter -> Task
Параметры
- 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#).
Исключения Заметки
This method catches all exceptions of type CommandException and writes them
to the standard error stream.
См. также