CommandExecuteAsync(TextReader, TextWriter, TextWriter, String) - метод
Executes a command using specified IO streams and arguments.
Пространство имён: Tessa.Platform.CommandLineСборка: Tessa (в Tessa.dll) Версия: 4.0.4
public ValueTask ExecuteAsync(
TextReader input,
TextWriter output,
TextWriter error,
params string[]? args
)
Public Function ExecuteAsync (
input As TextReader,
output As TextWriter,
error As TextWriter,
ParamArray args As String()
) As ValueTask
public:
ValueTask ExecuteAsync(
TextReader^ input,
TextWriter^ output,
TextWriter^ error,
... array<String^>^ args
)
member ExecuteAsync :
input : TextReader *
output : TextWriter *
error : TextWriter *
args : string[] -> ValueTask
- input TextReader
- The TextReader that represents an input stream.
- output TextWriter
- The TextWriter that represents an output stream.
- error TextWriter
- The TextWriter that represents an error stream.
- args String
- Command-line arguments to be passed to the command.
ValueTaskAsync task.
ArgumentNullException | input, output,
or error is null. |