Switch.Attributes Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the custom switch attributes defined in the application configuration file.
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
Property Value
A StringDictionary containing the case-insensitive custom attributes for the trace switch.
Examples
The following code sample shows how to display the unrecognized attributes for a custom switch.
// Get the custom attributes for the trace source switch.
foreach (DictionaryEntry de in ts.Switch.Attributes)
Console.WriteLine(de.Key + " " + de.Value);
' Get the custom attributes for the trace source switch.
For Each de In ts.Switch.Attributes
Console.WriteLine(de.Key + " " + de.Value)
Next de
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 Switch class can add custom attributes by overriding the GetSupportedAttributes method and returning a string array of custom attribute names.