@@ -56,15 +56,27 @@ var (standardOutput3, standardError3) = await ReadAsync("foo", new[] { "arg1", "
5656
5757## Other optional arguments
5858
59+ ### ` Run ` /` RunAsync `
60+
5961``` c#
6062string workingDirectory = " " ,
63+ Action < IDictionary < string , string ? >> ? configureEnvironment = null ,
6164IEnumerable < string > secrets = null ,
62- bool noEcho = false ,
65+ Func < int , bool > ? handleExitCode = null ,
6366string ? echoPrefix = null ,
64- Action < IDictionary < string , string ? >> ? configureEnvironment = null ,
67+ bool noEcho = false ,
68+ bool cancellationIgnoresProcessTree = false ,
6569bool createNoWindow = false ,
66- Encoding ? encoding = null ,
70+ CancellationToken ct = default ,
71+ ```
72+
73+ ### ` ReadAsync `
74+
75+ ``` c#
76+ string workingDirectory = " " ,
77+ Action < IDictionary < string , string ? >> ? configureEnvironment = null ,
6778Func < int , bool > ? handleExitCode = null ,
79+ Encoding ? encoding = null ,
6880string ? standardInput = null ,
6981bool cancellationIgnoresProcessTree = false ,
7082CancellationToken ct = default ,
0 commit comments