ServiceMetadataBehavior.HttpsGetEnabled 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 a value that indicates whether to publish service metadata for retrieval using an HTTPS/GET request.
public:
property bool HttpsGetEnabled { bool get(); void set(bool value); };
public bool HttpsGetEnabled { get; set; }
member this.HttpsGetEnabled : bool with get, set
Public Property HttpsGetEnabled As Boolean
Property Value
true
if the WSDL is published; otherwise, false
. The default is false
.
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
.