2 instantiations of EventLogRecord
System.Diagnostics.EventLog (2)
System\Diagnostics\Reader\EventLogReader.cs (1)
174
EventLogRecord eventInstance = new
EventLogRecord
(new EventLogHandle(_eventsBuffer[_currentIndex], true), _eventQuery.Session, _cachedMetadataInformation);
System\Diagnostics\Reader\EventLogWatcher.cs (1)
278
EventLogRecord 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)
102
EventLogHandle bookmarkHandle =
EventLogRecord
.GetBookmarkHandleFromBookmark(bookmark);
174
EventLogRecord
eventInstance = new EventLogRecord(new EventLogHandle(_eventsBuffer[_currentIndex], true), _eventQuery.Session, _cachedMetadataInformation);
238
using (EventLogHandle bookmarkHandle =
EventLogRecord
.GetBookmarkHandleFromBookmark(bookmark))
System\Diagnostics\Reader\EventLogWatcher.cs (2)
182
EventLogHandle bookmarkHandle =
EventLogRecord
.GetBookmarkHandleFromBookmark(_bookmark);
278
EventLogRecord
record = new EventLogRecord(new EventLogHandle(_eventsBuffer[i], true), _eventQuery.Session, cachedMetadataInformation);
System\Diagnostics\Reader\EventRecordWrittenEventArgs.cs (1)
11
internal EventRecordWrittenEventArgs(
EventLogRecord
record) { EventRecord = record; }