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