WSDualHttpBinding.EnvelopeVersion 属性

定义

获取此绑定处理的消息将要使用的 SOAP 版本。

public:
 property System::ServiceModel::EnvelopeVersion ^ EnvelopeVersion { System::ServiceModel::EnvelopeVersion ^ get(); };
public System.ServiceModel.EnvelopeVersion EnvelopeVersion { get; }
member this.EnvelopeVersion : System.ServiceModel.EnvelopeVersion
Public ReadOnly Property EnvelopeVersion As EnvelopeVersion

属性值

EnvelopeVersion

与此绑定一起使用的 EnvelopeVersion 的值。 该值必须始终为 SOAP 1.2。

示例

下面的示例演示如何获取此绑定处理的消息要使用的 SOAP 版本。

EnvelopeVersion envelopeversion = binding.EnvelopeVersion;
Dim envelopeversion As EnvelopeVersion = binding.EnvelopeVersion

适用于