ServiceMetadataBehavior.HttpsGetUrl 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定為 HTTPS/GET 要求發行中繼資料的位置。
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
屬性值
HTTPS 中繼資料的位址。
- 屬性
備註
如果 HttpsGetUrl 的值為相對值,則發行中繼資料的位址為基底位址和服務位址,外加一個 ?wsdl
查詢字串。
如果 HttpsGetUrl 的值為絕對值,則發行中繼資料的位址為 HttpsGetUrl 的值,外加一個 ?wsdl
查詢字串。
例如,如果服務位址為 https://localhost:8080/CalculatorService
且 HttpsGetUrl 為空字串,則 HTTPS/GET 中繼資料位址為 https://localhost:8080/CalculatorService?wsdl
。