ServiceDebugElement.HttpHelpPageUrl Property

Definition

Gets or sets the location at which the HTML help file is published.

public:
 property Uri ^ HttpHelpPageUrl { Uri ^ get(); void set(Uri ^ value); };
[System.Configuration.ConfigurationProperty("httpHelpPageUrl")]
public Uri HttpHelpPageUrl { get; set; }
[<System.Configuration.ConfigurationProperty("httpHelpPageUrl")>]
member this.HttpHelpPageUrl : Uri with get, set
Public Property HttpHelpPageUrl As Uri

Property Value

Uri

The relative or absolute HTTP-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 HTTP/Get request, for example, from an HTML browser. The location of the HTML help file is resolved as follows.

  1. 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 HTTP requests, plus this property value.

  2. If the value of this property is an absolute address and supports HTTP requests, the location of the HTML help file is the value of this property.

  3. If the value of this property is absolute but does not support HTTP requests, an exception is thrown.

This property is valid only when the HttpHelpPageEnabled property is true.

Applies to