4 instantiations of EventLogEntry
System (4)
services\monitoring\system\diagnosticts\EventLogInternal.cs (4)
933entries[idx] = new EventLogEntry(buf, 0, this); 937entries[idx] = new EventLogEntry(buf, sum, this); 1068entry = new EventLogEntry(cache, entryPos, this); 1125return new EventLogEntry(cache, 0, this);
21 references to EventLogEntry
System (21)
services\monitoring\system\diagnosticts\EntryWrittenEventArgs.cs (3)
20private EventLogEntry entry; 39public EntryWrittenEventArgs(EventLogEntry entry) { 50public EventLogEntry Entry {
services\monitoring\system\diagnosticts\EventLogEntry.cs (3)
24/// <see cref='System.Diagnostics.EventLogEntry'/> 140/// Gets the text associated with the <see cref='System.Diagnostics.EventLogEntry.CategoryNumber'/> for this entry. 398public bool Equals(EventLogEntry otherEntry) {
services\monitoring\system\diagnosticts\EventLogEntryCollection.cs (5)
42public virtual EventLogEntry this[int index] { 51public void CopyTo(EventLogEntry[] entries, int index) { 61internal EventLogEntry GetEntryAtNoThrow(int index) { 87EventLogEntry[] entries = log.GetAllEntries(); 101private EventLogEntry cachedEntry = null;
services\monitoring\system\diagnosticts\EventLogInternal.cs (10)
740EventLogEntry entry = GetEntryWithOldest(i); 879internal EventLogEntry[] GetAllEntries() { 887EventLogEntry[] entries = new EventLogEntry[EntryCount]; 1024internal EventLogEntry GetEntryAt(int index) { 1025EventLogEntry entry = GetEntryAtNoThrow(index); 1031internal EventLogEntry GetEntryAtNoThrow(int index) { 1041EventLogEntry entry = null; 1064private EventLogEntry GetEntryWithOldest(int index) { 1065EventLogEntry entry = null;