Compartilhar via


HealthMonitoringSection.Enabled Propriedade

Definição

Obtém ou define um valor que indica se o monitoramento de integridade está habilitado.

public:
 property bool Enabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)]
public bool Enabled { get; set; }
[<System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)>]
member this.Enabled : bool with get, set
Public Property Enabled As Boolean

Valor da propriedade

Boolean

true se o monitoramento de integridade estiver habilitado; caso contrário, false. O padrão é true.

Atributos

Exemplos

O exemplo de código a seguir mostra como obter o valor atual da propriedade e como desabilitar o Enabled monitoramento de integridade definindo essa propriedade como um valor de false. Este exemplo de código faz parte de um exemplo maior fornecido para a HealthMonitoringSection classe.


// Get the current Enabled property value.
Boolean enabledValue = healthMonitoringSection.Enabled;

// Set the Enabled property to false.
healthMonitoringSection.Enabled = false;

' Get the current Enabled property value.
Dim enabledValue As Boolean = healthMonitoringSection.Enabled

' Set the Enabled property to False.
healthMonitoringSection.Enabled = False

Aplica-se a