4 instantiations of EventLogEntry
System.Diagnostics.EventLog (4)
System\Diagnostics\EventLogInternal.cs (4)
756entries[idx] = new EventLogEntry(buf, 0, this); 761entries[idx] = new EventLogEntry(buf, sum, this); 884return new EventLogEntry(cache, entryPos, this); 938return 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)
12public EntryWrittenEventArgs(EventLogEntry? entry) 17public EventLogEntry? Entry { get; }
System\Diagnostics\EventLogEntry.cs (1)
302public bool Equals([NotNullWhen(true)] EventLogEntry? otherEntry)
System\Diagnostics\EventLogEntryCollection.cs (5)
25public virtual EventLogEntry this[int index] 33public void CopyTo(EventLogEntry[] entries, int index) 43internal EventLogEntry? GetEntryAtNoThrow(int index) 66EventLogEntry[] entries = _log.GetAllEntries(); 74private EventLogEntry? cachedEntry;
System\Diagnostics\EventLogInternal.cs (9)
561EventLogEntry entry = GetEntryWithOldest(i); 708internal EventLogEntry[] GetAllEntries() 717EventLogEntry[] entries = new EventLogEntry[EntryCount]; 847internal EventLogEntry GetEntryAt(int index) 849EventLogEntry? entry = GetEntryAtNoThrow(index); 855internal EventLogEntry? GetEntryAtNoThrow(int index) 863EventLogEntry? entry = null; 876private EventLogEntry GetEntryWithOldest(int index)