ServiceMetadataBehavior.HttpsGetUrl 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 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
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
.