4 instantiations of EventLogEntry
System.Diagnostics.EventLog (4)
System\Diagnostics\EventLogInternal.cs (4)
756
entries[idx] = new
EventLogEntry
(buf, 0, this);
761
entries[idx] = new
EventLogEntry
(buf, sum, this);
884
return new
EventLogEntry
(cache, entryPos, this);
938
return new
EventLogEntry
(cache, 0, this);
18 references to EventLogEntry
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
491
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.
EventLogEntry
))]
System.Diagnostics.EventLog (17)
System\Diagnostics\EntryWrittenEventArgs.cs (2)
12
public EntryWrittenEventArgs(
EventLogEntry
? entry)
17
public
EventLogEntry
? Entry { get; }
System\Diagnostics\EventLogEntry.cs (1)
302
public bool Equals([NotNullWhen(true)]
EventLogEntry
? otherEntry)
System\Diagnostics\EventLogEntryCollection.cs (5)
25
public virtual
EventLogEntry
this[int index]
33
public void CopyTo(
EventLogEntry
[] entries, int index)
43
internal
EventLogEntry
? GetEntryAtNoThrow(int index)
66
EventLogEntry
[] entries = _log.GetAllEntries();
74
private
EventLogEntry
? cachedEntry;
System\Diagnostics\EventLogInternal.cs (9)
561
EventLogEntry
entry = GetEntryWithOldest(i);
708
internal
EventLogEntry
[] GetAllEntries()
717
EventLogEntry
[] entries = new
EventLogEntry
[EntryCount];
847
internal
EventLogEntry
GetEntryAt(int index)
849
EventLogEntry
? entry = GetEntryAtNoThrow(index);
855
internal
EventLogEntry
? GetEntryAtNoThrow(int index)
863
EventLogEntry
? entry = null;
876
private
EventLogEntry
GetEntryWithOldest(int index)