DelimitedListTraceListener.GetSupportedAttributes 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回分隔的跟踪侦听器支持的自定义配置文件特性。
protected:
override cli::array <System::String ^> ^ GetSupportedAttributes();
protected public:
override cli::array <System::String ^> ^ GetSupportedAttributes();
protected override string[] GetSupportedAttributes ();
protected internal override string[] GetSupportedAttributes ();
override this.GetSupportedAttributes : unit -> string[]
Protected Overrides Function GetSupportedAttributes () As String()
Protected Friend Overrides Function GetSupportedAttributes () As String()
返回
String[]
包含单个值“delimiter”的字符串数组。
注解
自定义属性不是从基类继承的属性,可用于设置类的属性。 的 DelimitedListTraceListener 自定义属性用于设置 Delimiter 属性。
以下.NET Framework应用程序配置文件示例演示了如何使用 delimiter
特性来设置 Delimiter 属性:
<configuration>
<system.diagnostics>
<trace autoflush="false" indentsize="4">
<listeners>
<add name="delimitedListener"
type="System.Diagnostics.DelimitedListTraceListener"
delimiter=":"
initializeData="delimitedOutput.txt"
traceOutputOptions="ProcessId, DateTime" />
<remove name="Default" />
</listeners>
</trace>
</system.diagnostics>
</configuration>