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