2 instantiations of EventLogRecord
System.Diagnostics.EventLog (2)
System\Diagnostics\Reader\EventLogReader.cs (1)
174EventLogRecord eventInstance = new EventLogRecord(new EventLogHandle(_eventsBuffer[_currentIndex], true), _eventQuery.Session, _cachedMetadataInformation);
System\Diagnostics\Reader\EventLogWatcher.cs (1)
278EventLogRecord record = new EventLogRecord(new EventLogHandle(_eventsBuffer[i], true), _eventQuery.Session, cachedMetadataInformation);
7 references to EventLogRecord
System.Core (1)
System.Core.cs (1)
40[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Eventing.Reader.EventLogRecord))]
System.Diagnostics.EventLog (6)
System\Diagnostics\Reader\EventLogReader.cs (3)
102EventLogHandle bookmarkHandle = EventLogRecord.GetBookmarkHandleFromBookmark(bookmark); 174EventLogRecord eventInstance = new EventLogRecord(new EventLogHandle(_eventsBuffer[_currentIndex], true), _eventQuery.Session, _cachedMetadataInformation); 238using (EventLogHandle bookmarkHandle = EventLogRecord.GetBookmarkHandleFromBookmark(bookmark))
System\Diagnostics\Reader\EventLogWatcher.cs (2)
182EventLogHandle bookmarkHandle = EventLogRecord.GetBookmarkHandleFromBookmark(_bookmark); 278EventLogRecord record = new EventLogRecord(new EventLogHandle(_eventsBuffer[i], true), _eventQuery.Session, cachedMetadataInformation);
System\Diagnostics\Reader\EventRecordWrittenEventArgs.cs (1)
11internal EventRecordWrittenEventArgs(EventLogRecord record) { EventRecord = record; }