4 writes to _underlyingEventLog
System.Diagnostics.EventLog (4)
System\Diagnostics\EventLog.cs (4)
47_underlyingEventLog = new EventLogInternal(logName, machineName, source, this); 95_underlyingEventLog = newLog; 123_underlyingEventLog = newLog; 200_underlyingEventLog = newLog;
33 references to _underlyingEventLog
System.Diagnostics.EventLog (33)
System\Diagnostics\EventLog.cs (33)
59return _underlyingEventLog.Entries; 68return _underlyingEventLog.LogDisplayName; 82return _underlyingEventLog.Log; 86EventLogInternal newLog = new EventLogInternal(value, _underlyingEventLog.MachineName, _underlyingEventLog.Source, this); 87EventLogInternal oldLog = _underlyingEventLog; 110return _underlyingEventLog.MachineName; 114EventLogInternal newLog = new EventLogInternal(_underlyingEventLog.logName, value, _underlyingEventLog.sourceName, this); 115EventLogInternal oldLog = _underlyingEventLog; 132get => _underlyingEventLog.MaximumKilobytes; 133set => _underlyingEventLog.MaximumKilobytes = value; 139get => _underlyingEventLog.OverflowAction; 145get => _underlyingEventLog.MinimumRetentionDays; 165get => _underlyingEventLog.EnableRaisingEvents; 166set => _underlyingEventLog.EnableRaisingEvents = value; 176get => _underlyingEventLog.SynchronizingObject; 177set => _underlyingEventLog.SynchronizingObject = value; 188get => _underlyingEventLog.Source; 191EventLogInternal newLog = new EventLogInternal(_underlyingEventLog.Log, _underlyingEventLog.MachineName, CheckAndNormalizeSourceName(value), this); 192EventLogInternal oldLog = _underlyingEventLog; 212_underlyingEventLog.EntryWritten += value; 216_underlyingEventLog.EntryWritten -= value; 222_underlyingEventLog.BeginInit(); 227_underlyingEventLog.Clear(); 232_underlyingEventLog.Close(); 486_underlyingEventLog?.Dispose(disposing); 492_underlyingEventLog.EndInit(); 764_underlyingEventLog.ModifyOverflowPolicy(action, retentionDays); 769_underlyingEventLog.RegisterDisplayName(resourceFile, resourceId); 1025_underlyingEventLog.WriteEntry(message, type, eventID, category, rawData); 1035_underlyingEventLog.WriteEvent(instance, data, values);