System.Diagnostics.Eventing.Reader.EventLogRecord
Contains the properties of an event instance for an event that is received from an EventLogReader object. The event properties provide information about the event such as the name of the computer where the event was logged and the time that the event was created.
namespace System.Diagnostics.Eventing.Reader
{
public class EventLogRecord : EventRecord
{
public string ContainerLog { get; }
public IEnumerable<int> MatchedQueryIds { get; }
public IList<object> GetPropertyValues(EventLogPropertySelector propertySelector);
}
}