System.Diagnostics.Eventing.Reader.EventKeyword
Represents a keyword for an event. Keywords are defined in an event provider and are used to group the event with other similar events (based on the usage of the events).
namespace System.Diagnostics.Eventing.Reader
{
public class EventLogWatcher : IDisposable
{
public bool Enabled { get; set; }
public event EventHandler<EventRecordWrittenEventArgs> EventRecordWritten;
public EventLogWatcher(EventLogQuery eventQuery);
public EventLogWatcher(EventLogQuery eventQuery, EventBookmark bookmark);
public EventLogWatcher(EventLogQuery eventQuery, EventBookmark bookmark, bool readExistingEvents);
public EventLogWatcher(string path);
public void Dispose();
protected virtual void Dispose(bool disposing);
}
}
namespace System.Diagnostics.Eventing.Reader
{
public sealed class EventKeyword
{
public string DisplayName { get; }
public string Name { get; }
public long Value { get; }
}
}