* MtomMessageEncodingBindingElement.cs: it's base is abstract, use context.GetInnerProperty<T>(). svn path=/trunk/mcs/; revision=159068
@@ -1,3 +1,8 @@
+2010-06-17 Atsushi Enomoto <[email protected]>
+
+ * MtomMessageEncodingBindingElement.cs: it's base is abstract, use
+ context.GetInnerProperty<T>().
2010-06-17 Atsushi Enomoto <[email protected]>
* Binding.cs : enable simpler MessageVersion code (issued got fixed).
@@ -99,7 +99,7 @@ namespace System.ServiceModel.Channels
{
if (typeof (T) == typeof (MessageVersion))
return (T) (object) MessageVersion;
- return base.GetProperty<T> (context);
+ return context.GetInnerProperty<T> ();
}
public override MessageEncoderFactory