TraceSource.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。
示例
下面的代码示例演示如何显示 的 TraceSource自定义属性。 此代码示例是为 TraceSource 类提供的一个更大示例的一部分。
// Get the custom attributes for the TraceSource.
Console.WriteLine("Number of custom trace source attributes = "
+ ts.Attributes.Count);
foreach (DictionaryEntry de in ts.Attributes)
Console.WriteLine("Custom trace source attribute = "
+ de.Key + " " + de.Value);
' Get the custom attributes for the TraceSource.
Console.WriteLine("Number of custom trace source attributes = " + ts.Attributes.Count)
Dim de As DictionaryEntry
For Each de In ts.Attributes
Console.WriteLine("Custom trace source attribute = " + de.Key + " " + de.Value)
Next de
注解
属性 Attributes 标识在应用程序的配置文件中引用的自定义属性。 不枚举未引用的自定义属性。 继承自 类的 TraceSource 类可以通过重写 Switch.GetSupportedAttributes 方法并返回自定义属性名称的字符串数组来添加自定义属性。
下面是指定自定义属性 SecondTraceSourceAttribute
的跟踪源元素的示例:
<sources>
<source name="TraceTest" switchName="TestSourceSwitch"
switchType="Testing.MySourceSwitch, TraceSample"
SecondTraceSourceAttribute="two">
</source>
</sources>