System.Diagnostics.BooleanSwitch
namespace System.Diagnostics
{
public class BooleanSwitch : Switch
{
public bool Enabled { get; set; }
public BooleanSwitch(string displayName, string description);
public BooleanSwitch(string displayName, string description, string defaultSwitchValue);
}
}