2 writes to _standardError
System.Diagnostics.Process (2)
System\Diagnostics\Process.cs (2)
878_standardError = null; 1423_standardError = new StreamReader(OpenStream(parentErrorPipeHandle!, FileAccess.Read),
12 references to _standardError
System.Diagnostics.Process (12)
System\Diagnostics\Process.cs (7)
690if (_standardError == null) 704return _standardError; 859if (_standardError != null && (_errorStreamReadMode == StreamReadMode.AsyncMode || _errorStreamReadMode == StreamReadMode.Undefined)) 866_standardError.Close(); 1826if (_standardError == null) 1831Stream s = _standardError.BaseStream; 1832_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!);