ServiceMetadataBehavior.HttpsGetUrl Property

Definition

Gets or sets the location of metadata publication for HTTPS/GET requests.

public:
 property Uri ^ HttpsGetUrl { Uri ^ get(); void set(Uri ^ value); };
public Uri HttpsGetUrl { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.UriTypeConverter))]
public Uri HttpsGetUrl { get; set; }
member this.HttpsGetUrl : Uri with get, set
[<System.ComponentModel.TypeConverter(typeof(System.UriTypeConverter))>]
member this.HttpsGetUrl : Uri with get, set
Public Property HttpsGetUrl As Uri

Property Value

Uri

The address of HTTPS metadata.

Attributes

Remarks

If the value of HttpsGetUrl is relative, the address at which the metadata is published is the base address and the service address plus a ?wsdl querystring.

If the value of HttpsGetUrl is absolute the address at which the metadata is published is the value of HttpsGetUrl value plus a ?wsdl querystring.

For example, if the service address is https://localhost:8080/CalculatorService and the HttpsGetUrl is an empty string, the HTTPS/GET metadata address is https://localhost:8080/CalculatorService?wsdl.

Applies to