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
属性值
包含与 Web 引用关联的协议名称的 String。
示例
下面的代码示例演示了此属性的用法。 此代码示例是为 WebReference 类提供的一个更大示例的一部分。
// Create a web referernce using the WSDL collection.
WebReference reference = new WebReference(wsdlCollection, space);
reference.ProtocolName = "Soap12";
注解
允许的协议字符串包括指示 SOAP 1.0) 的“Soap” (和“Soap12” (指示 SOAP 1.2) 。 此属性的值确定代理客户端在联系集合中的任何 Documents XML Web 服务时使用的协议。
有关 SOAP 的详细信息,请参阅 万维网联盟 网站。