Share via


BooleanSwitch.Enabled Propriedade

Definição

Obtém ou define um valor que indica se comutador está habilitado ou desabilitado.

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

Valor da propriedade

true se a opção estiver habilitada; caso contrário, false. O padrão é false.

Exceções

O chamador não tem a permissão correta.

Exemplos

O exemplo de código a seguir cria um BooleanSwitch e usa a opção para determinar se deseja imprimir uma mensagem de erro. A opção é criada no nível da classe. O Main método passa sua localização para MyMethod, que imprime uma mensagem de erro e o local em que o erro ocorreu.

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

Comentários

Por padrão, esse campo é definido como false (desabilitado). Para habilitar a opção, atribua a esse campo o valor de true. Para desabilitar a opção, atribua o valor a false. O valor dessa propriedade é determinado pelo valor da propriedade SwitchSettingde classe base .

Aplica-se a

Confira também