2 writes to _standardError
System.Diagnostics.Process (2)
System\Diagnostics\Process.cs (2)
818_standardError = null; 1311_standardError = new StreamReader(OpenStream(parentErrorPipeHandle!, FileAccess.Read),
12 references to _standardError
System.Diagnostics.Process (12)
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)
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!);