ServiceHealthBehaviorBase.HttpGetEnabled Property

Definition

Gets or sets a value that specifies whether to publish service metadata for retrieval using an HTTP/Get request.

public:
 property bool HttpGetEnabled { bool get(); void set(bool value); };
public bool HttpGetEnabled { get; set; }
member this.HttpGetEnabled : bool with get, set
Public Property HttpGetEnabled As Boolean

Property Value

A value that specifies whether to publish service metadata for retrieval using an HTTP/Get request. The default value is true.

Remarks

If the httpGetUrl attribute is not specified, the address to which the metadata is published is the service address plus "?health". For example, if the service address is http://localhost:8080/CalculatorService, the HTTP/Get metadata address is http://localhost:8080/CalculatorService?health.

If this property is false, or if the address of the service is not based on HTTP or HTTPS, "?health" is ignored.

Applies to