共用方式為


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

適用於