2 writes to StandardOutputClosed
aspire (2)
Processes\IsolatedProcess.cs (2)
129StandardOutputClosed = Task.CompletedTask; 201StandardOutputClosed = outputTcs.Task;
8 references to StandardOutputClosed
aspire (3)
DotNet\ProcessExecution.cs (1)
597var 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)
38await Task.WhenAll(child.StandardOutputClosed, child.StandardErrorClosed).WaitAsync(TimeSpan.FromSeconds(10)); 70await Task.WhenAll(child.StandardOutputClosed, child.StandardErrorClosed).WaitAsync(TimeSpan.FromSeconds(10)); 108async () => await child.StandardOutputClosed.WaitAsync(TimeSpan.FromSeconds(10))); 150Assert.False(child.StandardOutputClosed.IsCompleted); 156await child.StandardOutputClosed.WaitAsync(TimeSpan.FromSeconds(10));