BooleanSwitch.Enabled Özellik

Tanım

Anahtarın etkinleştirildiğini veya devre dışı bırakıldığını belirten bir değer alır veya ayarlar.

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

Özellik Değeri

true anahtar etkinse; aksi takdirde , false. Varsayılan değer: false.

Özel durumlar

Çağıranın doğru izni yok.

Örnekler

Aşağıdaki kod örneği bir BooleanSwitch oluşturur ve anahtarını kullanarak hata iletisinin yazdırılıp yazdırılmayacağını belirler. Anahtar sınıf düzeyinde oluşturulur. yöntemi, Main bir MyMethodhata iletisi ve hatanın oluştuğu konumu yazdıran konumuna geçirir.

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

Açıklamalar

Varsayılan olarak, bu alan olarak ayarlanır false (devre dışı). Anahtarı etkinleştirmek için bu alana değerini atayın true. Anahtarı devre dışı bırakmak için değerini olarak falseatayın. Bu özelliğin değeri, temel sınıf özelliğinin SwitchSettingdeğeri tarafından belirlenir.

Şunlara uygulanır

Ayrıca bkz.