ServiceMetadataPublishingElement.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); };
[System.Configuration.ConfigurationProperty("httpsGetEnabled", DefaultValue=false)]
public bool HttpsGetEnabled { get; set; }
[<System.Configuration.ConfigurationProperty("httpsGetEnabled", DefaultValue=false)>]
member this.HttpsGetEnabled : bool with get, set
Public Property HttpsGetEnabled As Boolean
Property Value
true
if the service metadata is published for retrieval using an HTTP/Get request; otherwise, false
. The default is false
.
- Attributes
Remarks
If the HttpsGetUrl property is not specified, the address at which the metadata is published is the service address plus a "?wsdl". For example, if the service address is https://localhost:8080/CalculatorService
, the HTTP/Get metadata address is https://localhost:8080/CalculatorService?wsdl
.
If this property is false
, or the address of the service is not based on HTTP or HTTPS, "?wsdl" is ignored.