Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Switch.DisplayName Property

Definition

Namespace:
System.Diagnostics
Assemblies:
netstandard.dll, System.Diagnostics.TraceSource.dll
Assembly:
System.Diagnostics.TraceSource.dll
Assembly:
System.dll
Assembly:
netstandard.dll
Source:
Switch.cs
Source:
Switch.cs
Source:
Switch.cs
Source:
Switch.cs
Source:
Switch.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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


Feedback

Was this page helpful?