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>