2 writes to _standardError
System.Diagnostics.Process (2)
System\Diagnostics\Process.cs (2)
901_standardError = null; 1446_standardError = new StreamReader(OpenStream(parentErrorPipeHandle!, FileAccess.Read),
12 references to _standardError
System.Diagnostics.Process (12)
System\Diagnostics\Process.cs (7)
713if (_standardError == null) 727return _standardError; 882if (_standardError != null && (_errorStreamReadMode == StreamReadMode.AsyncMode || _errorStreamReadMode == StreamReadMode.Undefined)) 889_standardError.Close(); 1971if (_standardError == null) 1976Stream s = _standardError.BaseStream; 1977_error = new AsyncStreamReader(s, ErrorReadNotifyUser, _standardError.CurrentEncoding);
System\Diagnostics\Process.Multiplexing.cs (4)
442Task<ArraySegment<byte>> errorTask = ReadPipeToBufferAsync(_standardError!.BaseStream, cancellationToken); 539StreamReader errorReader = _standardError!; 605else if (_standardError is null) 639var errorHandle = GetSafeHandleFromStreamReader(_standardError!);
System\Diagnostics\Process.Multiplexing.Unix.cs (1)
29SafePipeHandle errorHandle = GetSafeHandleFromStreamReader(_standardError!);