WebReference.ProtocolName 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定與 Web 參考相關聯的通訊協定。
public:
property System::String ^ ProtocolName { System::String ^ get(); void set(System::String ^ value); };
public string ProtocolName { get; set; }
member this.ProtocolName : string with get, set
Public Property ProtocolName As String
屬性值
String,包含與 Web 參考相關聯的通訊協定名稱。
範例
下列程式碼範例說明此屬性的使用。 此程式碼範例是針對 類別提供的較大範例的 WebReference 一部分。
// Create a web referernce using the WSDL collection.
WebReference reference = new WebReference(wsdlCollection, space);
reference.ProtocolName = "Soap12";
備註
允許的通訊協定字串包括 「Soap」 (表示 SOAP 1.0) 和 「Soap12」 (表示 SOAP 1.2) 。 這個屬性的值會決定在連絡集合中的任何 Documents XML Web 服務時,Proxy 用戶端所使用的通訊協定。
如需 SOAP 的詳細資訊,請參閱 World Wide Web Consortium 網站。