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 sealed class EventKeyword
{
public string DisplayName {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog);
}
}
public string Name {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog);
}
}
public long Value {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog);
}
}
internal EventKeyword()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog);
}
}
}