Bagikan melalui


Switch.Attributes Properti

Definisi

Mendapatkan atribut sakelar kustom yang ditentukan dalam file konfigurasi aplikasi.

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

Nilai Properti

yang StringDictionary berisi atribut kustom yang tidak peka huruf besar/kecil untuk sakelar pelacakan.

Contoh

Contoh kode berikut menunjukkan cara menampilkan atribut yang tidak dikenal untuk sakelar kustom.

// 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

Keterangan

Properti Attributes mengidentifikasi atribut kustom yang dirujuk dalam file konfigurasi aplikasi. Atribut kustom yang tidak direferensikan tidak dijumlahkan. Kelas yang mewarisi dari Switch kelas dapat menambahkan atribut kustom dengan mengambil GetSupportedAttributes alih metode dan mengembalikan array string nama atribut kustom.

Berlaku untuk