This topic has not yet been rated - Rate this topic

SourceSwitch Class

Provides a multilevel switch to control tracing and debug output without recompiling your code.

System.Object
  System.Diagnostics.Switch
    System.Diagnostics.SourceSwitch

Namespace:  System.Diagnostics
Assembly:  System (in System.dll)
public class SourceSwitch : Switch

The SourceSwitch type exposes the following members.

  Name Description
Public method SourceSwitch(String) Initializes a new instance of the SourceSwitch class, specifying the name of the source.
Public method SourceSwitch(String, String) Initializes a new instance of the SourceSwitch class, specifying the display name and the default value for the source switch.
Top
  Name Description
Public property Attributes Gets the custom switch attributes defined in the application configuration file. (Inherited from Switch.)
Public property Description Gets a description of the switch. (Inherited from Switch.)
Public property DisplayName Gets a name used to identify the switch. (Inherited from Switch.)
Public property Level Gets or sets the level of the switch.
Protected property SwitchSetting Gets or sets the current setting for this switch. (Inherited from Switch.)
Protected property Value Gets or sets the value of the switch. (Inherited from Switch.)
Top
  Name Description
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Protected method GetSupportedAttributes Gets the custom attributes supported by the switch. (Inherited from Switch.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method OnSwitchSettingChanged Invoked when the SwitchSetting property is changed. (Inherited from Switch.)
Protected method OnValueChanged Invoked when the value of the Value property changes. (Overrides Switch.OnValueChanged().)
Public method ShouldTrace Determines if trace listeners should be called, based on the trace event type.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top

The Switch property of the TraceSource class is a SourceSwitch object. The SourceSwitch class provides a Level property to test the event level of the switch. The Level property gets or sets the switch's TraceLevel value.

You can set the event level of a SourceSwitch through the application configuration file and then use the configured SourceSwitch level in your application. Alternatively, you can create a SourceSwitch in your code and set the level directly, to instrument a specific section of code.

To configure a SourceSwitch, edit the configuration file that corresponds to the name of your application. Within this file, you can set a switch's value or clear all the switches previously set by the application. The configuration file should be formatted as shown in the following example.

<switches>
  <add name="SourceSwitch" value="Verbose"></add>
</switches>

The switch is used to check whether a trace should be propagated or ignored. Each TraceSource trace method calls the ShouldTrace method before calling the listeners. If the ShouldTrace method returns false, the trace is ignored and the trace method exits. If the ShouldTrace method returns true, the trace is passed to the listeners.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ