Browse Source

2010-06-17 Atsushi Enomoto <[email protected]>

	* MtomMessageEncodingBindingElement.cs: it's base is abstract, use 
	  context.GetInnerProperty<T>().


svn path=/trunk/mcs/; revision=159068
Atsushi Eno 15 years ago
parent
commit
995bc567f8

+ 5 - 0
mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog

@@ -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).

+ 1 - 1
mcs/class/System.ServiceModel/System.ServiceModel.Channels/MtomMessageEncodingBindingElement.cs

@@ -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