MessageVersion.Envelope 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 the SOAP version associated with the current message version.
public:
property System::ServiceModel::EnvelopeVersion ^ Envelope { System::ServiceModel::EnvelopeVersion ^ get(); };
public System.ServiceModel.EnvelopeVersion Envelope { get; }
member this.Envelope : System.ServiceModel.EnvelopeVersion
Public ReadOnly Property Envelope As EnvelopeVersion
Property Value
The EnvelopeVersion associated with the current message version.
Examples
EnvelopeVersion envVersion = msgVersion.Envelope;
Dim envVersion As EnvelopeVersion = msgVersion.Envelope
Remarks
There are currently two SOAP envelope versions available: SOAP 1.1 and SOAP 1.2. These versions of SOAP are represented by EnvelopeVersion and are returned by the Soap11 and Soap12 properties. The version of SOAP associated with the MessageVersion can be recovered by using the Envelope property. For more information, see the schema for SOAP 1.1 and SOAP 1.2.