Switch.DisplayName Property

Definition

Gets a name used to identify the switch.

public:
 property System::String ^ DisplayName { System::String ^ get(); };
public string DisplayName { get; }
member this.DisplayName : string
Public ReadOnly Property DisplayName As String

Property Value

The name used to identify the switch. The default value is an empty string ("").

Examples

The following code example displays the display name for the switch in use by a trace source. This code example is part of a larger example that can be found in the TraceSource class summary.

Console.WriteLine(ts.Switch.DisplayName);
Console.WriteLine(ts.Switch.DisplayName)

Remarks

When you create a new Switch object, the DisplayName finds initial switch settings. For more information, see the Switch constructor and How to: Create, Initialize and Configure Trace Switches in the Visual Studio documentation.

Applies to

See also