Switch.Attributes 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取在应用程序配置文件中定义的自定义开关特性。
public:
property System::Collections::Specialized::StringDictionary ^ Attributes { System::Collections::Specialized::StringDictionary ^ get(); };
public System.Collections.Specialized.StringDictionary Attributes { get; }
member this.Attributes : System.Collections.Specialized.StringDictionary
Public ReadOnly Property Attributes As StringDictionary
属性值
一个 StringDictionary,包含跟踪开关的自定义特性(不区分大小写)。
示例
下面的代码示例演示如何显示自定义开关无法识别的属性。
// Get the custom attributes for the trace source switch.
foreach (DictionaryEntry de in ts.Switch.Attributes)
Console.WriteLine(de.Key + " " + de.Value);
' Get the custom attributes for the trace source switch.
For Each de In ts.Switch.Attributes
Console.WriteLine(de.Key + " " + de.Value)
Next de
注解
属性 Attributes 标识在应用程序的配置文件中引用的自定义属性。 不枚举未引用的自定义属性。 继承自 类的 Switch 类可以通过重写 GetSupportedAttributes 方法并返回自定义属性名称的字符串数组来添加自定义属性。