ServiceHealthBehaviorBase.HttpsGetEnabled Property

Definition

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

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

Property Value

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

Remarks

If the httpsGetUrl 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 https://localhost:8080/CalculatorService, the HTTP/Get metadata address is https://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