TraceSwitch Constructor (String^, String^, String^)
.NET Framework (current version)
Initializes a new instance of the TraceSwitch class, using the specified display name, description, and default value for the switch.
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
Available since 2.0
Show: