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