9 instantiations of EventLogInternal
System (9)
services\monitoring\system\diagnosticts\EventLog.cs (7)
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); 1447using (EventLogInternal log = new EventLogInternal("", ".", CheckAndNormalizeSourceName(source))) { 1477using (EventLogInternal log = new EventLogInternal("", ".", CheckAndNormalizeSourceName(source))) { 1483using (EventLogInternal log = new EventLogInternal("", ".", CheckAndNormalizeSourceName(source))) {
services\monitoring\system\diagnosticts\EventLogEntry.cs (1)
56owner = new EventLogInternal(logName, machineName, "");
services\monitoring\system\diagnosticts\EventLogInternal.cs (1)
564info.handleOwner = new EventLogInternal(compLogName, compMachineName);
20 references to EventLogInternal
System (20)
services\monitoring\system\diagnosticts\EventLog.cs (10)
52private EventLogInternal m_underlyingEventLog; 163EventLogInternal newLog = new EventLogInternal(value, m_underlyingEventLog.MachineName, m_underlyingEventLog.Source, this); 164EventLogInternal oldLog = m_underlyingEventLog; 193EventLogInternal newLog = new EventLogInternal(m_underlyingEventLog.logName, value, m_underlyingEventLog.sourceName, this); 194EventLogInternal oldLog = m_underlyingEventLog; 305EventLogInternal newLog = new EventLogInternal(m_underlyingEventLog.Log, m_underlyingEventLog.MachineName, CheckAndNormalizeSourceName(value), this); 306EventLogInternal oldLog = m_underlyingEventLog; 1447using (EventLogInternal log = new EventLogInternal("", ".", CheckAndNormalizeSourceName(source))) { 1477using (EventLogInternal log = new EventLogInternal("", ".", CheckAndNormalizeSourceName(source))) { 1483using (EventLogInternal log = new EventLogInternal("", ".", CheckAndNormalizeSourceName(source))) {
services\monitoring\system\diagnosticts\EventLogEntry.cs (2)
36private EventLogInternal owner; 41internal EventLogEntry(byte[] buf, int offset, EventLogInternal log) {
services\monitoring\system\diagnosticts\EventLogEntryCollection.cs (2)
19private EventLogInternal log; 21internal EventLogEntryCollection(EventLogInternal log) {
services\monitoring\system\diagnosticts\EventLogInternal.cs (6)
550private static void AddListenerComponent(EventLogInternal component, string compMachineName, string compLogName) { 1386private static void RemoveListenerComponent(EventLogInternal component, string compLogName) { 1439EventLogInternal[] interestedComponents; 1441interestedComponents = (EventLogInternal[])info.listeningComponents.ToArray(typeof(EventLogInternal)); 1736public EventLogInternal handleOwner;