4 writes to _underlyingEventLog
System.Diagnostics.EventLog (4)
System\Diagnostics\EventLog.cs (4)
47
_underlyingEventLog
= new EventLogInternal(logName, machineName, source, this);
95
_underlyingEventLog
= newLog;
123
_underlyingEventLog
= newLog;
200
_underlyingEventLog
= newLog;
33 references to _underlyingEventLog
System.Diagnostics.EventLog (33)
System\Diagnostics\EventLog.cs (33)
59
return
_underlyingEventLog
.Entries;
68
return
_underlyingEventLog
.LogDisplayName;
82
return
_underlyingEventLog
.Log;
86
EventLogInternal newLog = new EventLogInternal(value,
_underlyingEventLog
.MachineName,
_underlyingEventLog
.Source, this);
87
EventLogInternal oldLog =
_underlyingEventLog
;
110
return
_underlyingEventLog
.MachineName;
114
EventLogInternal newLog = new EventLogInternal(
_underlyingEventLog
.logName, value,
_underlyingEventLog
.sourceName, this);
115
EventLogInternal oldLog =
_underlyingEventLog
;
132
get =>
_underlyingEventLog
.MaximumKilobytes;
133
set =>
_underlyingEventLog
.MaximumKilobytes = value;
139
get =>
_underlyingEventLog
.OverflowAction;
145
get =>
_underlyingEventLog
.MinimumRetentionDays;
165
get =>
_underlyingEventLog
.EnableRaisingEvents;
166
set =>
_underlyingEventLog
.EnableRaisingEvents = value;
176
get =>
_underlyingEventLog
.SynchronizingObject;
177
set =>
_underlyingEventLog
.SynchronizingObject = value;
188
get =>
_underlyingEventLog
.Source;
191
EventLogInternal newLog = new EventLogInternal(
_underlyingEventLog
.Log,
_underlyingEventLog
.MachineName, CheckAndNormalizeSourceName(value), this);
192
EventLogInternal oldLog =
_underlyingEventLog
;
212
_underlyingEventLog
.EntryWritten += value;
216
_underlyingEventLog
.EntryWritten -= value;
222
_underlyingEventLog
.BeginInit();
227
_underlyingEventLog
.Clear();
232
_underlyingEventLog
.Close();
486
_underlyingEventLog
?.Dispose(disposing);
492
_underlyingEventLog
.EndInit();
764
_underlyingEventLog
.ModifyOverflowPolicy(action, retentionDays);
769
_underlyingEventLog
.RegisterDisplayName(resourceFile, resourceId);
1025
_underlyingEventLog
.WriteEntry(message, type, eventID, category, rawData);
1035
_underlyingEventLog
.WriteEvent(instance, data, values);