Switch.DisplayName 属性

获取用于标识该开关的名称。

**命名空间:**System.Diagnostics
**程序集:**System(在 system.dll 中)

语法

声明
Public ReadOnly Property DisplayName As String
用法
Dim instance As Switch
Dim value As String

value = instance.DisplayName
public string DisplayName { get; }
public:
property String^ DisplayName {
    String^ get ();
}
/** @property */
public String get_DisplayName ()
public function get DisplayName () : String

属性值

用于标识该开关的名称。默认值为空字符串 ("")。

备注

当您创建新 Switch 对象时,DisplayName 查找初始开关设置。有关更多信息,请参见 Switch 构造函数和 Visual Studio 文档中的“TraceSwitch 配置”主题。

示例

下面的代码示例显示了跟踪源正在使用的开关的显示名称。此代码示例摘自一个更大的示例,该示例可在 TraceSource 类摘要中找到。

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

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

Switch 类
Switch 成员
System.Diagnostics 命名空间
Switch 类
BooleanSwitch 类
TraceSwitch
Debug 类
Trace