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.
MessageEncodingBindingElement::MessageVersion Property
.NET Framework (current version)
When overridden in a derived class, gets or sets the message version that can be handled by the message encoders produced by the message encoder factory.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public: property MessageVersion^ MessageVersion { virtual MessageVersion^ get() abstract; virtual void set(MessageVersion^ value) abstract; }
Property Value
Type: System.ServiceModel.Channels::MessageVersion^The MessageVersion used by the encoders produced by the message encoder factory.
When binding elements are asked to process a message that has a MessageVersion not returned by this property, it should throw an exception.
The following code illustrates how to implement the MessageVersion property:
public override MessageVersion MessageVersion { get { return this.msgVersion; } set { if (value == null) throw new ArgumentNullException("value"); this.msgVersion = value; } }
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: