TraceSource.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

次のコード サンプルは、 のカスタム属性を表示する方法を TraceSource示しています。 このコード例は、TraceSource クラスのために提供されている大規模な例の一部です。

// Get the custom attributes for the TraceSource.
Console.WriteLine("Number of custom trace source attributes = "
    + ts.Attributes.Count);
foreach (DictionaryEntry de in ts.Attributes)
    Console.WriteLine("Custom trace source attribute = "
        + de.Key + "  " + de.Value);
' Get the custom attributes for the TraceSource.
Console.WriteLine("Number of custom trace source attributes = " + ts.Attributes.Count)
Dim de As DictionaryEntry
For Each de In ts.Attributes
    Console.WriteLine("Custom trace source attribute = " + de.Key + "  " + de.Value)
Next de

注釈

プロパティは Attributes 、アプリケーションの構成ファイルで参照されるカスタム属性を識別します。 参照されていないカスタム属性は列挙されません。 クラスから継承するクラスは、 メソッドを TraceSource オーバーライドし、カスタム属性名の Switch.GetSupportedAttributes 文字列配列を返すことによって、カスタム属性を追加できます。

カスタム属性 SecondTraceSourceAttributeを指定するトレース ソース要素のサンプルを次に示します。

<sources>  
  <source name="TraceTest" switchName="TestSourceSwitch"   
    switchType="Testing.MySourceSwitch, TraceSample"   
    SecondTraceSourceAttribute="two">  
  </source>  
</sources>  

適用対象