4 writes to m_underlyingEventLog
System (4)
services\monitoring\system\diagnosticts\EventLog.cs (4)
116m_underlyingEventLog = new EventLogInternal(logName, machineName, source, this); 173m_underlyingEventLog = newLog; 203m_underlyingEventLog = newLog; 315m_underlyingEventLog = newLog;
34 references to m_underlyingEventLog
System (34)
services\monitoring\system\diagnosticts\EventLog.cs (34)
129return m_underlyingEventLog.Entries; 142return m_underlyingEventLog.LogDisplayName; 160return m_underlyingEventLog.Log; 163EventLogInternal newLog = new EventLogInternal(value, m_underlyingEventLog.MachineName, m_underlyingEventLog.Source, this); 164EventLogInternal oldLog = m_underlyingEventLog; 190return m_underlyingEventLog.MachineName; 193EventLogInternal newLog = new EventLogInternal(m_underlyingEventLog.logName, value, m_underlyingEventLog.sourceName, this); 194EventLogInternal oldLog = m_underlyingEventLog; 213return m_underlyingEventLog.MaximumKilobytes; 219m_underlyingEventLog.MaximumKilobytes = value; 227return m_underlyingEventLog.OverflowAction; 235return m_underlyingEventLog.MinimumRetentionDays; 259return m_underlyingEventLog.EnableRaisingEvents; 262m_underlyingEventLog.EnableRaisingEvents = value; 279return m_underlyingEventLog.SynchronizingObject; 283m_underlyingEventLog.SynchronizingObject = value; 302return m_underlyingEventLog.Source; 305EventLogInternal newLog = new EventLogInternal(m_underlyingEventLog.Log, m_underlyingEventLog.MachineName, CheckAndNormalizeSourceName(value), this); 306EventLogInternal oldLog = m_underlyingEventLog; 329m_underlyingEventLog.EntryWritten += value; 332m_underlyingEventLog.EntryWritten -= value; 339m_underlyingEventLog.BeginInit(); 351m_underlyingEventLog.Clear(); 361m_underlyingEventLog.Close(); 768if(m_underlyingEventLog != null) { 769m_underlyingEventLog.Dispose(disposing); 778m_underlyingEventLog.EndInit(); 1152m_underlyingEventLog.ModifyOverflowPolicy(action, retentionDays); 1159m_underlyingEventLog.RegisterDisplayName(resourceFile, resourceId); 1463m_underlyingEventLog.WriteEntry(message, type, eventID, category, rawData); 1473m_underlyingEventLog.WriteEvent(instance, data, values);