ServiceDebugBehavior.HttpsHelpPageEnabled Property

Definition

Gets or sets a value that specifies whether Windows Communication Foundation (WCF) returns an HTML help file over HTTPS at the address controlled by the HttpsHelpPageUrl property.

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

Property Value

true if an HTML help file is returned to clients making an HTTPS/GET request such as that of an HTML browser; otherwise, false. The default is true.

Remarks

Set the HttpsHelpPageEnabled property to false to disable the publication of an HTML help page visible to HTML browsers.

To ensure the HTML help page is published at the location controlled by the HttpsHelpPageUrl property, you must set this property to true and then one of the following conditions must also be true:

  • The HttpsHelpPageUrl property is an absolute address that supports the HTTPS protocol scheme.

  • There is a base address for the service that supports the HTTPS protocol scheme.

Although an exception is thrown if an absolute address that does not support the HTTPS protocol scheme is assigned to the HttpsHelpPageUrl property, any other scenario in which neither of the preceding criteria is met results in no exception and no HTML help page.

Applies to