共用方式為


DelimitedListTraceListener.GetSupportedAttributes 方法

定義

傳回由分隔的追蹤接聽程式支援的自訂組態檔屬性。

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>  

適用於