ServiceHealthElement.HttpGetEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that controls whether the service publishes its health information at the address specified by the HttpGetUrl
attribute.
public:
property bool HttpGetEnabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("httpGetEnabled", DefaultValue=true)]
public bool HttpGetEnabled { get; set; }
[<System.Configuration.ConfigurationProperty("httpGetEnabled", DefaultValue=true)>]
member this.HttpGetEnabled : bool with get, set
Public Property HttpGetEnabled As Boolean
Property Value
true
to publish health information at the address specified by the HttpGetUrl
attribute; otherwise, false
.
- Attributes
Remarks
The HttpGetEnabled
property corresponds to the value of the HttpGetEnabled
attribute of a <serviceHealth>
element. If the attribute is not defined in a configuration file, its default value is true
. The property defines the value of the ServiceHealthBehavior.HttpGetEnabled property.