2 writes to _standardError
System.Diagnostics.Process (2)
System\Diagnostics\Process.cs (2)
877_standardError = null; 1422_standardError = new StreamReader(OpenStream(parentErrorPipeHandle!, FileAccess.Read),
12 references to _standardError
System.Diagnostics.Process (12)
System\Diagnostics\Process.cs (7)
689if (_standardError == null) 703return _standardError; 858if (_standardError != null && (_errorStreamReadMode == StreamReadMode.AsyncMode || _errorStreamReadMode == StreamReadMode.Undefined)) 865_standardError.Close(); 1947if (_standardError == null) 1952Stream s = _standardError.BaseStream; 1953_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!);