8 instantiations of EventLogInternal
System.Diagnostics.EventLog (8)
System\Diagnostics\EventLog.cs (7)
47_underlyingEventLog = new EventLogInternal(logName, machineName, source, this); 86EventLogInternal newLog = new EventLogInternal(value, _underlyingEventLog.MachineName, _underlyingEventLog.Source, this); 114EventLogInternal newLog = new EventLogInternal(_underlyingEventLog.logName, value, _underlyingEventLog.sourceName, this); 191EventLogInternal newLog = new EventLogInternal(_underlyingEventLog.Log, _underlyingEventLog.MachineName, CheckAndNormalizeSourceName(value), this); 1017using (EventLogInternal log = new EventLogInternal(string.Empty, ".", CheckAndNormalizeSourceName(source), parent: null! /* Special case - EventLogInternal instance is immediately used */)) 1040using (EventLogInternal log = new EventLogInternal(string.Empty, ".", CheckAndNormalizeSourceName(source), parent: null! /* Special case - EventLogInternal instance is immediately used */)) 1048using (EventLogInternal log = new EventLogInternal(string.Empty, ".", CheckAndNormalizeSourceName(source), parent: null! /* Special case - EventLogInternal instance is immediately used */))
System\Diagnostics\EventLogInternal.cs (1)
421handleOwner: new EventLogInternal(compLogName, compMachineName, string.Empty, parent: null),
20 references to EventLogInternal
System.Diagnostics.EventLog (20)
System\Diagnostics\EventLog.cs (10)
31private EventLogInternal _underlyingEventLog; 86EventLogInternal newLog = new EventLogInternal(value, _underlyingEventLog.MachineName, _underlyingEventLog.Source, this); 87EventLogInternal oldLog = _underlyingEventLog; 114EventLogInternal newLog = new EventLogInternal(_underlyingEventLog.logName, value, _underlyingEventLog.sourceName, this); 115EventLogInternal oldLog = _underlyingEventLog; 191EventLogInternal newLog = new EventLogInternal(_underlyingEventLog.Log, _underlyingEventLog.MachineName, CheckAndNormalizeSourceName(value), this); 192EventLogInternal oldLog = _underlyingEventLog; 1017using (EventLogInternal log = new EventLogInternal(string.Empty, ".", CheckAndNormalizeSourceName(source), parent: null! /* Special case - EventLogInternal instance is immediately used */)) 1040using (EventLogInternal log = new EventLogInternal(string.Empty, ".", CheckAndNormalizeSourceName(source), parent: null! /* Special case - EventLogInternal instance is immediately used */)) 1048using (EventLogInternal log = new EventLogInternal(string.Empty, ".", CheckAndNormalizeSourceName(source), parent: null! /* Special case - EventLogInternal instance is immediately used */))
System\Diagnostics\EventLogEntry.cs (2)
22private readonly EventLogInternal owner; 26internal EventLogEntry(byte[] buf, int offset, EventLogInternal log)
System\Diagnostics\EventLogEntryCollection.cs (2)
10private readonly EventLogInternal _log; 12internal EventLogEntryCollection(EventLogInternal log)
System\Diagnostics\EventLogInternal.cs (6)
408private static void AddListenerComponent(EventLogInternal component, string compMachineName, string compLogName) 1145private static void RemoveListenerComponent(EventLogInternal component, string compLogName) 1189EventLogInternal[] interestedComponents; 1413public LogListeningInfo(EventLogInternal handleOwner, AutoResetEvent waitHandle) 1418public EventLogInternal handleOwner; 1421public List<EventLogInternal> listeningComponents = new();