Ver Fonte

2002-07-31 Duncan Mak <[email protected]>

	* MethodCallMessageWrapper.cs:
	* MethodReturnMessageWrapper.cs: Revert the last patch and made it
	work. Thanks to Gonzalo for reminding me to chain the constructors.

svn path=/trunk/mcs/; revision=6282
Duncan Mak há 23 anos atrás
pai
commit
3dcdffa3d3

+ 6 - 0
mcs/class/corlib/System.Runtime.Remoting.Messaging/ChangeLog

@@ -1,3 +1,9 @@
+2002-07-31  Duncan Mak  <[email protected]>
+	
+	* MethodCallMessageWrapper.cs:
+	* MethodReturnMessageWrapper.cs: Revert the last patch and made it
+	work. Thanks to Gonzalo for reminding me to chain the constructors.
+
 2002-07-31  Duncan Mak  <[email protected]>
 
 	* MethodCallMessageWrapper.cs:

+ 2 - 1
mcs/class/corlib/System.Runtime.Remoting.Messaging/MethodCallMessageWrapper.cs

@@ -12,9 +12,10 @@ using System.Reflection;
 
 namespace System.Runtime.Remoting.Messaging {
 
-	public class MethodCallMessageWrapper : IMethodCallMessage, IMethodMessage, IMessage
+	public class MethodCallMessageWrapper : InternalMessageWrapper, IMethodCallMessage, IMethodMessage, IMessage
 	{
 		public MethodCallMessageWrapper (IMethodCallMessage msg)
+			: base (msg)
 		{
 			throw new NotImplementedException ();
 		}

+ 2 - 1
mcs/class/corlib/System.Runtime.Remoting.Messaging/MethodReturnMessageWrapper.cs

@@ -13,11 +13,12 @@ using System.Runtime.Serialization;
 
 namespace System.Runtime.Remoting.Messaging {
 
-	public class MethodReturnMessageWrapper : IMethodReturnMessage, IMethodMessage, IMessage
+	public class MethodReturnMessageWrapper : InternalMessageWrapper, IMethodReturnMessage, IMethodMessage, IMessage
 	{
 
 		[MonoTODO]
 		public MethodReturnMessageWrapper (IMethodReturnMessage msg)
+			: base (msg)
 		{
 			throw new NotImplementedException ();
 		}