2 writes to StandardOutputClosed
aspire (2)
Processes\IsolatedProcess.cs (2)
129
StandardOutputClosed
= Task.CompletedTask;
201
StandardOutputClosed
= outputTcs.Task;
8 references to StandardOutputClosed
aspire (3)
DotNet\ProcessExecution.cs (1)
597
var drained = Task.WhenAll(process.
StandardOutputClosed
, process.StandardErrorClosed);
Processes\IsolatedProcess.cs (2)
185
/// <summary>Stderr counterpart of <see cref="
StandardOutputClosed
"/>.</summary>
476
/// semantics so consumers of <see cref="
StandardOutputClosed
"/> see the same outcome
Aspire.Cli.Tests (5)
Processes\IsolatedProcessTests.cs (5)
38
await Task.WhenAll(child.
StandardOutputClosed
, child.StandardErrorClosed).WaitAsync(TimeSpan.FromSeconds(10));
70
await Task.WhenAll(child.
StandardOutputClosed
, child.StandardErrorClosed).WaitAsync(TimeSpan.FromSeconds(10));
108
async () => await child.
StandardOutputClosed
.WaitAsync(TimeSpan.FromSeconds(10)));
150
Assert.False(child.
StandardOutputClosed
.IsCompleted);
156
await child.
StandardOutputClosed
.WaitAsync(TimeSpan.FromSeconds(10));