MessageVersion Class
Specifies the versions of SOAP and WS-Addressing associated with a message and its exchange.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The MessageVersion type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | Addressing | Gets or sets the version of WS-Addressing that is associated with the current message version. |
![]() ![]() ![]() | Default | Gets the default message version used by . |
![]() ![]() | Envelope | Gets the SOAP version associated with the current message version. |
![]() ![]() ![]() | None | Gets the message version that does not use SOAP or WS-Addressing. |
![]() ![]() ![]() | Soap11 | Gets the message version using SOAP 1.1. |
![]() ![]() | Soap11WSAddressing10 | Gets the message version using WS-Addressing 1.0 and SOAP 1.1. |
![]() ![]() | Soap11WSAddressingAugust2004 | Gets the message version by using WS-Addressing submitted 10 August 2004 and SOAP 1.1. |
![]() ![]() | Soap12 | Gets the message version using SOAP 1.2. |
![]() ![]() ![]() | Soap12WSAddressing10 | Gets the message version using WS-Addressing 1.0 and SOAP 1.2. |
![]() ![]() | Soap12WSAddressingAugust2004 | Gets the message version using WS-Addressing submitted August 2004 and SOAP 1.2. |
| Name | Description | |
|---|---|---|
![]() ![]() ![]() | CreateVersion(EnvelopeVersion) | Creates a message version object by using WS-Addressing 1.0 and with a specified SOAP version. |
![]() ![]() ![]() | CreateVersion(EnvelopeVersion, AddressingVersion) | Creates a message version object with specified SOAP and WS-Addressing versions. |
![]() ![]() | Equals | Returns a value that indicates whether the current message version is equal to a specified object. (Overrides Object::Equals(Object).) |
![]() ![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() | GetHashCode | Gets a hash code for the current message version. (Overrides Object::GetHashCode().) |
![]() ![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() ![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() ![]() | ToString | The current message version. (Overrides Object::ToString().) |
The MessageVersion contains the versioning information both about the SOAP envelope and the addressing protocol that is used by a message. An instance of Message is bound upon creation to a specific MessageVersion by passing the version as a parameter into one of the CreateMessage overloads.
All the static "get" properties in this class, such as Soap11WSAddressing10 and Soap12 have enumeration-like semantics. They provide an enumeration of the possible message versions supported by the runtime. A message has an envelope structure and an addressing structure. MessageVersion is just a shortcut for supplying {EnvelopeVersion, AddressingVersion} together.
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.
There are currently two versions of WS-Addressing available. The one submitted on 10 August 2004 and the one specified in the WS-Addressing 1.0 protocol. The address version used by the current message version can be recovered using the Addressing property. These versions of WS-Addressing are represented by AddressingVersion and are returned by the WSAddressingAugust2004 and WSAddressing10 properties. The WS-Addressing August 2004 is retained as a legacy value. The 10 August 2004 W3C Member Submission for WS-Addressing is available at Web Services Addressing (WS-Addressing). The 17 August 2005 W3C Candidate Recommendation for WS-Addressing 1.0 - Core is available at Web Services Addressing 1.0 - Core.
None provides support for using "plain old XML" (POX)-style messaging. Enabling basic POX messaging is now a matter of setting up an HTTP binding on your service with a text encoder that uses None.
Message version objects can be created using specified versions of WS-Addressing and SOAP using one of the CreateVersion overloads.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

