TraceListener.Attributes 属性

定义

获取应用程序配置文件中定义的自定义跟踪侦听器特性。

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

注解

TraceListener 类继承的类可以通过重写 GetSupportedAttributes 方法并返回自定义属性名称的字符串数组来添加自定义属性。 属性 Attributes 标识在应用程序的配置文件中引用的自定义属性。 例如,在以下配置文件摘录中 DelimitedListTraceListener 引用了自定义属性“delimiter”。 在这种情况下, Attributes 属性返回一个 StringDictionary 包含字符串“delimiter”的 。

<listeners>  
  <add name="delimitedListener"   
    type="System.Diagnostics.DelimitedListTraceListener"   
    delimiter=":"   
    initializeData="delimitedOutput.txt"   
    traceOutputOptions="ProcessId, DateTime" />  
  <remove name="Default" />  
</listeners>  

未引用的自定义属性不枚举。 有关更多信息,请参见 GetSupportedAttributes 方法。

适用于