TraceSource.Attributes Property
Gets the custom switch attributes defined in the application configuration file.
Namespace: System.Diagnostics
Assembly: System (in System.dll)
Property Value
Type: System.Collections.Specialized.StringDictionaryA StringDictionary containing the custom attributes for the trace switch.
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:
<sources>
<source name="TraceTest" switchName="TestSourceSwitch"
switchType="Testing.MySourceSwitch, TraceSample"
SecondTraceSourceAttribute="two">
</source>
</sources>
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.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.