System.Diagnostics.Eventing.Reader.StandardEventOpcode
namespace System.Diagnostics.Eventing.Reader
{
public class EventLogQuery
{
public bool ReverseDirection { get; set; }
public EventLogSession Session { get; set; }
public bool TolerateQueryErrors { get; set; }
public EventLogQuery(string path, PathType pathType);
public EventLogQuery(string path, PathType pathType, string query);
}
}
namespace System.Diagnostics.Eventing.Reader
{
public enum StandardEventOpcode
{
Info = 0,
Start = 1,
Stop = 2,
DataCollectionStart = 3,
DataCollectionStop = 4,
Extension = 5,
Reply = 6,
Resume = 7,
Suspend = 8,
Send = 9,
Receive = 240
}
}