2 writes to _standardError
System.Diagnostics.Process (2)
System\Diagnostics\Process.cs (2)
818_standardError = null; 1311_standardError = new StreamReader(OpenStream(parentErrorPipeHandle!, FileAccess.Read),
11 references to _standardError
System.Diagnostics.Process (11)
System\Diagnostics\Process.cs (7)
630if (_standardError == null) 644return _standardError; 799if (_standardError != null && (_errorStreamReadMode == StreamReadMode.AsyncMode || _errorStreamReadMode == StreamReadMode.Undefined)) 806_standardError.Close(); 1661if (_standardError == null) 1666Stream s = _standardError.BaseStream; 1667_error = new AsyncStreamReader(s, ErrorReadNotifyUser, _standardError.CurrentEncoding);
System\Diagnostics\Process.Multiplexing.cs (4)
196Task<ArraySegment<byte>> errorTask = ReadPipeToBufferAsync(_standardError!.BaseStream, cancellationToken); 293StreamReader errorReader = _standardError!; 359else if (_standardError is null) 393var errorHandle = GetSafeHandleFromStreamReader(_standardError!);