System.Diagnostics.SourceSwitch
namespace System.Diagnostics
{
public class SourceSwitch : Switch
{
public SourceLevels Level { get; set; }
public SourceSwitch(string name);
public SourceSwitch(string displayName, string defaultSwitchValue);
public bool ShouldTrace(TraceEventType eventType);
}
}