The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
MessageEncoder::MessageVersion Property
.NET Framework (current version)
When overridden in a derived class, gets the message version value that is used by the encoder.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public: property MessageVersion^ MessageVersion { virtual MessageVersion^ get() abstract; }
Property Value
Type: System.ServiceModel.Channels::MessageVersion^The MessageVersion that is used by the encoder.
Specifies the versions of SOAP and WS-Addressing associated with a message and its exchange. If SOAP versions are not to be used, this property should be overridden to return None.
The following code shows how to implement the MessageVersion property.
public override MessageVersion MessageVersion { get { return this.factory.MessageVersion; } }
Universal Windows Platform
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: