Поделиться через


HealthMonitoringSection.Enabled Свойство

Определение

Получает или задает значение, указывающее включено ли наблюдение за состоянием.

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

Значение свойства

true, если наблюдение за состоянием включено, в противном случае false. Значение по умолчанию — true.

Атрибуты

Примеры

В следующем примере кода показано, как получить текущее значение из Enabled свойства и как отключить мониторинг работоспособности, задав для этого свойства значение false. Этот пример входит в состав более крупного примера использования класса HealthMonitoringSection.


// 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

Применяется к