SwitchAttribute::SwitchName Property

 

Gets or sets the display name of the switch.

Namespace:   System.Diagnostics
Assembly:  System (in System.dll)

public:
property String^ SwitchName {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The display name of the switch.

Exception Condition
ArgumentNullException

SwitchName is set to null.

ArgumentException

SwitchName is set to an empty string.

The SwitchName property should match the DisplayName property of the switch.

The following code example displays the value the SwitchName property for all switches used in an assembly. This code example is part of a larger example provided for the TraceSource class.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: