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>  

適用対象