Bagikan melalui


SwitchAttribute(String, Type) Konstruktor

Definisi

Menginisialisasi instans SwitchAttribute baru kelas, menentukan nama dan jenis sakelar.

public:
 SwitchAttribute(System::String ^ switchName, Type ^ switchType);
public SwitchAttribute (string switchName, Type switchType);
new System.Diagnostics.SwitchAttribute : string * Type -> System.Diagnostics.SwitchAttribute
Public Sub New (switchName As String, switchType As Type)

Parameter

switchName
String

Nama tampilan sakelar.

switchType
Type

Jenis sakelar.

Contoh

Contoh kode berikut menunjukkan penggunaan SwitchAttribute konstruktor untuk membuat atribut switch. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk TraceSource kelas .

[SwitchAttribute("SourceSwitch", typeof(SourceSwitch))]
static void Main()
<SwitchAttribute("SourceSwitch", GetType(SourceSwitch))> _
Shared Sub Main()

Keterangan

Parameter switchName harus cocok dengan DisplayName properti sakelar.

Berlaku untuk