Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TraceSwitch Constructor (String^, String^, String^)

 

Initializes a new instance of the TraceSwitch class, using the specified display name, description, and default value for the switch.

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

public:
TraceSwitch(
	String^ displayName,
	String^ description,
	String^ defaultSwitchValue
)

Parameters

displayName
Type: System::String^

The name to display on a user interface.

description
Type: System::String^

The description of the switch.

defaultSwitchValue
Type: System::String^

The default value of the switch.

The displayName parameter is used to set the value of the DisplayName property, the description parameter is use to set the value of the Description property, and the defaultSwitchValue parameter is saved as a field and used to initialize the Value property on first reference. See the TraceSwitch(String^, String^) constructor for more information and a code example.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft