SwitchAttribute(String, Type) Costruttore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe SwitchAttribute, specificando il nome e il tipo dell'opzione.
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)
Parametri
- switchName
- String
Nome visualizzato dell'opzione.
- switchType
- Type
Tipo dell'opzione.
Esempio
Nell'esempio SwitchAttribute di codice seguente viene illustrato l'uso del costruttore per creare un attributo switch. Questo esempio di codice fa parte di un esempio più grande fornito per la TraceSource classe.
[SwitchAttribute("SourceSwitch", typeof(SourceSwitch))]
static void Main()
<SwitchAttribute("SourceSwitch", GetType(SourceSwitch))> _
Shared Sub Main()
Commenti
Il switchName
parametro deve corrispondere alla DisplayName proprietà dell'opzione.