TraceSource.Attributes Property

Definition

Gets the custom switch attributes defined in the application configuration file.

C#
public System.Collections.Specialized.StringDictionary Attributes { get; }

Property Value

A StringDictionary containing the custom attributes for the trace switch.

Examples

The following code sample shows how to display the custom attributes for a TraceSource. This code example is part of a larger example provided for the TraceSource class.

C#
// 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);

Remarks

The Attributes property identifies the custom attributes referenced in the application's configuration file. Unreferenced custom attributes are not enumerated. Classes that inherit from the TraceSource class can add custom attributes by overriding the Switch.GetSupportedAttributes method and returning a string array of custom attribute names.

The following is a sample of a trace source element specifying the custom attribute SecondTraceSourceAttribute:

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

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1