2 instantiations of EventLogRecord
System.Core (2)
System\Diagnostics\Eventing\Reader\EventLogReader.cs (1)
189EventLogRecord eventInstance = new EventLogRecord(new EventLogHandle(this.eventsBuffer[currentIndex], true), this.eventQuery.Session, this.cachedMetadataInformation);
System\Diagnostics\Eventing\Reader\EventLogWatcher.cs (1)
262EventLogRecord record = new EventLogRecord(new EventLogHandle(this.eventsBuffer[i], true), this.eventQuery.Session, this.cachedMetadataInformation);
6 references to EventLogRecord
System.Core (6)
System\Diagnostics\Eventing\Reader\EventLogReader.cs (3)
119EventLogHandle bookmarkHandle = EventLogRecord.GetBookmarkHandleFromBookmark(bookmark); 189EventLogRecord eventInstance = new EventLogRecord(new EventLogHandle(this.eventsBuffer[currentIndex], true), this.eventQuery.Session, this.cachedMetadataInformation); 259using (EventLogHandle bookmarkHandle = EventLogRecord.GetBookmarkHandleFromBookmark(bookmark)) {
System\Diagnostics\Eventing\Reader\EventLogWatcher.cs (2)
175EventLogHandle bookmarkHandle = EventLogRecord.GetBookmarkHandleFromBookmark(bookmark); 262EventLogRecord record = new EventLogRecord(new EventLogHandle(this.eventsBuffer[i], true), this.eventQuery.Session, this.cachedMetadataInformation);
System\Diagnostics\Eventing\Reader\EventRecordWrittenEventArgs.cs (1)
33internal EventRecordWrittenEventArgs(EventLogRecord record) { this.record = record; }