1 instantiation of ProcessOutputLine
System.Diagnostics.Process (1)
System\Diagnostics\Process.Multiplexing.cs (1)
331await channel.Writer.WriteAsync(new ProcessOutputLine(line, standardError), ct).ConfigureAwait(false);
6 references to ProcessOutputLine
System.Diagnostics.Process (6)
System\Diagnostics\Process.Multiplexing.cs (5)
269/// An async enumerable of <see cref="ProcessOutputLine"/> instances representing the lines 288public async IAsyncEnumerable<ProcessOutputLine> ReadAllLinesAsync([EnumeratorCancellation] CancellationToken cancellationToken = default) 295Channel<ProcessOutputLine> channel = Channel.CreateBounded<ProcessOutputLine>(0); 307while (channel.Reader.TryRead(out ProcessOutputLine line))
System\Diagnostics\ProcessOutputLine.cs (1)
12/// Initializes a new instance of the <see cref="ProcessOutputLine"/> struct.