Compartilhar via


BooleanSwitch Construtores

Definição

Inicializa uma nova instância da classe BooleanSwitch.

Sobrecargas

BooleanSwitch(String, String)

Inicializa uma nova instância da classe BooleanSwitch com o nome de exibição e a descrição especificados.

BooleanSwitch(String, String, String)

Inicializa uma nova instância da classe BooleanSwitch com o nome de exibição, a descrição e o comutador padrão especificados.

BooleanSwitch(String, String)

Origem:
BooleanSwitch.cs
Origem:
BooleanSwitch.cs
Origem:
BooleanSwitch.cs

Inicializa uma nova instância da classe BooleanSwitch com o nome de exibição e a descrição especificados.

public:
 BooleanSwitch(System::String ^ displayName, System::String ^ description);
public BooleanSwitch (string displayName, string? description);
public BooleanSwitch (string displayName, string description);
new System.Diagnostics.BooleanSwitch : string * string -> System.Diagnostics.BooleanSwitch
Public Sub New (displayName As String, description As String)

Parâmetros

displayName
String

O nome a ser exibido em uma interface do usuário.

description
String

A descrição do comutador.

Exemplos

O exemplo a seguir cria um BooleanSwitch e usa a opção para determinar se uma mensagem de erro deve ser impressa. A opção é criada no nível da classe. O Main método passa seu local para MyMethod, que imprime uma mensagem de erro e onde 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 which 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 which 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 function.
Public Overloads Shared Sub Main()
    Main(System.Environment.GetCommandLineArgs())
End Sub
 
Overloads Public Shared Sub Main(args() As String)
    ' Run the method which writes an error message specifying the location of the error.
    MyMethod("in Main")
End Sub

Comentários

Quando você cria um BooleanSwitch, o displayName parâmetro é usado para localizar as configurações de comutador inicial para aplicativos .NET Framework no arquivo de configuração do aplicativo. Se o construtor não conseguir localizar as configurações iniciais ou para aplicativos .NET Core e .NET 5+, a Enabled propriedade será definida false como (desabilitada).

Para definir o nível do em BooleanSwitch um aplicativo .NET Framework, edite o arquivo de configuração correspondente ao nome do aplicativo. Nesse arquivo, você pode adicionar uma opção e definir seu valor, remover uma opção ou limpar todas as opções definidas anteriormente pelo aplicativo. O arquivo de configuração deve ser formatado como o exemplo a seguir:

<configuration>  
    <system.diagnostics>  
       <switches>  
          <add name="mySwitch" value="10" />  
          <add name="myNewSwitch" value="20" />  
          <remove name="mySwitch" />  
          <clear/>  
       </switches>  
    </system.diagnostics>  
 </configuration>  

Observação

As opções que você criou devem ser static.

Confira também

Aplica-se a

BooleanSwitch(String, String, String)

Origem:
BooleanSwitch.cs
Origem:
BooleanSwitch.cs
Origem:
BooleanSwitch.cs

Inicializa uma nova instância da classe BooleanSwitch com o nome de exibição, a descrição e o comutador padrão especificados.

public:
 BooleanSwitch(System::String ^ displayName, System::String ^ description, System::String ^ defaultSwitchValue);
public BooleanSwitch (string displayName, string? description, string defaultSwitchValue);
public BooleanSwitch (string displayName, string description, string defaultSwitchValue);
new System.Diagnostics.BooleanSwitch : string * string * string -> System.Diagnostics.BooleanSwitch
Public Sub New (displayName As String, description As String, defaultSwitchValue As String)

Parâmetros

displayName
String

O nome a ser exibido na interface do usuário.

description
String

A descrição do comutador.

defaultSwitchValue
String

O valor padrão do comutador.

Aplica-se a