4 writes to m_underlyingEventLog
System (4)
services\monitoring\system\diagnosticts\EventLog.cs (4)
116
m_underlyingEventLog
= new EventLogInternal(logName, machineName, source, this);
173
m_underlyingEventLog
= newLog;
203
m_underlyingEventLog
= newLog;
315
m_underlyingEventLog
= newLog;
34 references to m_underlyingEventLog
System (34)
services\monitoring\system\diagnosticts\EventLog.cs (34)
129
return
m_underlyingEventLog
.Entries;
142
return
m_underlyingEventLog
.LogDisplayName;
160
return
m_underlyingEventLog
.Log;
163
EventLogInternal newLog = new EventLogInternal(value,
m_underlyingEventLog
.MachineName,
m_underlyingEventLog
.Source, this);
164
EventLogInternal oldLog =
m_underlyingEventLog
;
190
return
m_underlyingEventLog
.MachineName;
193
EventLogInternal newLog = new EventLogInternal(
m_underlyingEventLog
.logName, value,
m_underlyingEventLog
.sourceName, this);
194
EventLogInternal oldLog =
m_underlyingEventLog
;
213
return
m_underlyingEventLog
.MaximumKilobytes;
219
m_underlyingEventLog
.MaximumKilobytes = value;
227
return
m_underlyingEventLog
.OverflowAction;
235
return
m_underlyingEventLog
.MinimumRetentionDays;
259
return
m_underlyingEventLog
.EnableRaisingEvents;
262
m_underlyingEventLog
.EnableRaisingEvents = value;
279
return
m_underlyingEventLog
.SynchronizingObject;
283
m_underlyingEventLog
.SynchronizingObject = value;
302
return
m_underlyingEventLog
.Source;
305
EventLogInternal newLog = new EventLogInternal(
m_underlyingEventLog
.Log,
m_underlyingEventLog
.MachineName, CheckAndNormalizeSourceName(value), this);
306
EventLogInternal oldLog =
m_underlyingEventLog
;
329
m_underlyingEventLog
.EntryWritten += value;
332
m_underlyingEventLog
.EntryWritten -= value;
339
m_underlyingEventLog
.BeginInit();
351
m_underlyingEventLog
.Clear();
361
m_underlyingEventLog
.Close();
768
if(
m_underlyingEventLog
!= null) {
769
m_underlyingEventLog
.Dispose(disposing);
778
m_underlyingEventLog
.EndInit();
1152
m_underlyingEventLog
.ModifyOverflowPolicy(action, retentionDays);
1159
m_underlyingEventLog
.RegisterDisplayName(resourceFile, resourceId);
1463
m_underlyingEventLog
.WriteEntry(message, type, eventID, category, rawData);
1473
m_underlyingEventLog
.WriteEvent(instance, data, values);