BooleanSwitch.Enabled Proprietà

Definizione

Ottiene o imposta un valore che indica se l'opzione è abilitata o meno.

public:
 property bool Enabled { bool get(); void set(bool value); };
public bool Enabled { get; set; }
member this.Enabled : bool with get, set
Public Property Enabled As Boolean

Valore della proprietà

true se l'opzione è abilitata; in caso contrario, false. Il valore predefinito è false.

Eccezioni

Il chiamante non ha l'autorizzazione corretta.

Esempio

Nell'esempio di codice seguente viene creato un BooleanSwitch oggetto e viene utilizzata l'opzione per determinare se stampare un messaggio di errore. L'opzione viene creata a livello di classe. Il Main metodo passa la relativa posizione a MyMethod, che stampa un messaggio di errore e il percorso in cui si è verificato l'errore.

public ref class BooleanSwitchTest
{
private:

   /* Create a BooleanSwitch for data.*/
   static BooleanSwitch^ dataSwitch = gcnew BooleanSwitch( "Data","DataAccess module" );

public:
   static void MyMethod( String^ location )
   {
      
      //Insert code here to handle processing.
      if ( dataSwitch->Enabled )
            Console::WriteLine( "Error happened at {0}", location );
   }

};

int main()
{
   
   //Run the method that writes an error message specifying the location of the error.
   BooleanSwitchTest::MyMethod( "in main" );
}
//Class level declaration.
/* Create a BooleanSwitch for data.*/
static BooleanSwitch dataSwitch = new BooleanSwitch("Data", "DataAccess module");

static public void MyMethod(string location)
{
    //Insert code here to handle processing.
    if (dataSwitch.Enabled)
        Console.WriteLine("Error happened at " + location);
}

public static void Main(string[] args)
{
    //Run the method that writes an error message specifying the location of the error.
    MyMethod("in Main");
}
'Class level declaration.
' Create a BooleanSwitch for data. 
Private Shared dataSwitch As New BooleanSwitch("Data", "DataAccess module")


Public Shared Sub MyMethod(location As String)
    'Insert code here to handle processing.
    If dataSwitch.Enabled Then
        Console.WriteLine(("Error happened at " + location))
    End If
End Sub

'Entry point which delegates to C-style main Private Function
Public Overloads Shared Sub Main()
    Main(System.Environment.GetCommandLineArgs())
End Sub
 
Overloads Public Shared Sub Main(args() As String)
    'Run the method that writes an error message specifying the location of the error.
    MyMethod("in Main")
End Sub

Commenti

Per impostazione predefinita, questo campo è impostato su false (disabilitato). Per abilitare l'opzione, assegnare a questo campo il valore di true. Per disabilitare l'opzione, assegnare il valore a false. Il valore di questa proprietà è determinato dal valore della proprietà SwitchSettingdella classe di base .

Si applica a

Vedi anche