ServiceDebugElement.HttpsHelpPageUrl 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 the location at which an HTML help file is published for retrieval using HTTPS.
public:
property Uri ^ HttpsHelpPageUrl { Uri ^ get(); void set(Uri ^ value); };
[System.Configuration.ConfigurationProperty("httpsHelpPageUrl")]
public Uri HttpsHelpPageUrl { get; set; }
[<System.Configuration.ConfigurationProperty("httpsHelpPageUrl")>]
member this.HttpsHelpPageUrl : Uri with get, set
Public Property HttpsHelpPageUrl As Uri
Property Value
The relative or absolute HTTPS-based URL of the custom HTML help file the user sees when the endpoint is viewed using an HTML browser.
- Attributes
Remarks
You can use this property to enable the use of a custom HTML help file that is returned from an HTTPS/Get request, for example, from an HTML browser. The location of the HTML help file is resolved as follows.
If the value of this property is a relative address, the location of the HTML help file is the value of the service base address that supports HTTPS requests, plus this property value.
If the value of this property is an absolute address and supports HTTPS requests, the location of the HTML help file is the value of this property.
If the value of this property is absolute but does not support HTTPS requests, an exception is thrown.
This property is valid only when the HttpsHelpPageEnabled property is true
.