8 references to EventLogInternal
System (8)
services\monitoring\system\diagnosticts\EventLog.cs (4)
116m_underlyingEventLog = new EventLogInternal(logName, machineName, source, this); 163EventLogInternal newLog = new EventLogInternal(value, m_underlyingEventLog.MachineName, m_underlyingEventLog.Source, this); 193EventLogInternal newLog = new EventLogInternal(m_underlyingEventLog.logName, value, m_underlyingEventLog.sourceName, this); 305EventLogInternal newLog = new EventLogInternal(m_underlyingEventLog.Log, m_underlyingEventLog.MachineName, CheckAndNormalizeSourceName(value), this);
services\monitoring\system\diagnosticts\EventLogInternal.cs (4)
139public EventLogInternal() : this("", ".", "", null) { 145public EventLogInternal(string logName) : this(logName, ".", "", null) { 151public EventLogInternal(string logName, string machineName) : this(logName, machineName, "", null) { 157public EventLogInternal(string logName, string machineName, string source) : this(logName, machineName, source, null) {