2002-08-03 Duncan Mak <duncan@ximian.com>
authorDuncan Mak <duncan@mono-cvs.ximian.com>
Fri, 2 Aug 2002 18:30:58 +0000 (18:30 -0000)
committerDuncan Mak <duncan@mono-cvs.ximian.com>
Fri, 2 Aug 2002 18:30:58 +0000 (18:30 -0000)
* BinaryClientFormatterSink.cs:
* IClientChannelSink.cs: Fixed signature for AsyncProcessResponse.

* MethodCall.cs:
* MethodResponse.cs: More visibility fixes. Hopefully this is the
last of it.

svn path=/trunk/mcs/; revision=6361

mcs/class/corlib/System.Runtime.Remoting.Channels/BinaryClientFormatterSink.cs
mcs/class/corlib/System.Runtime.Remoting.Channels/ChangeLog
mcs/class/corlib/System.Runtime.Remoting.Channels/IClientChannelSink.cs
mcs/class/corlib/System.Runtime.Remoting.Messaging/ChangeLog
mcs/class/corlib/System.Runtime.Remoting.Messaging/MethodCall.cs
mcs/class/corlib/System.Runtime.Remoting.Messaging/MethodResponse.cs

index dfd975c2fb197e92cadef2169f82cce4f31e1465..88e096b5eef6442e646a61e3aedc72c1209e4b22 100644 (file)
@@ -58,7 +58,7 @@ namespace System.Runtime.Remoting.Channels
                }
 
                [MonoTODO]
-               public void AsyncProcessResponse (IClientChannelSinkStack sinkStack,
+               public void AsyncProcessResponse (IClientResponseChannelSinkStack sinkStack,
                                                  object state,
                                                  ITransportHeaders headers,
                                                  Stream stream)
index a6e55a2bbd6f2a3c51ec566787cf1b150c08d160..5072fca1e858415dadf710b1367832bd1197fc7c 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-03  Duncan Mak  <duncan@ximian.com>
+
+       * BinaryClientFormatterSink.cs: 
+       * IClientChannelSink.cs: Fixed signature for AsyncProcessResponse.
+
 2002-08-01  Rodrigo Moya <rodrigo@ximian.com>
 
        * BinaryClientFormatterSink.cs:
index 1271fb0bd5af6c2a122015de1fab35a393f9d612..f4413f9e3e5098bf8bca615d877c2cab2818e8a5 100644 (file)
@@ -18,7 +18,7 @@ namespace System.Runtime.Remoting.Channels {
                void AsyncProcessRequest (IClientChannelSinkStack sinkStack, IMessage msg,
                                          ITransportHeaders headers, Stream stream);
 
-               void AsyncProcessResponse (IClientChannelSinkStack sinkStack, object state,
+               void AsyncProcessResponse (IClientResponseChannelSinkStack sinkStack, object state,
                                           ITransportHeaders headers, Stream stream);
 
                Stream GetRequestStream (IMessage msg, ITransportHeaders headers);
index af2a577787db8c5e9738d81cd2750836d36dd51a..e8b337101f0da17da3a069ddd51f03fcd84e7ae5 100644 (file)
@@ -1,3 +1,9 @@
+2002-08-03  Duncan Mak  <duncan@ximian.com>
+
+       * MethodCall.cs: 
+       * MethodResponse.cs: More visibility fixes. Hopefully this is the
+       last of it.
+
 2002-08-02  Duncan Mak  <duncan@ximian.com>
 
        * MethodCall.cs: 
index efeb8ed7e8dea182ceab62d8196c2d60dedfd7fe..3c007d4ec153ad78472cb8a0008518b10c8caffa 100644 (file)
@@ -73,7 +73,7 @@ namespace System.Runtime.Remoting.Messaging {
                }
                
                [MonoTODO]
-               public IDictionary Properties {
+               public virtual IDictionary Properties {
                        get { throw new NotImplementedException (); }
                }
 
@@ -119,13 +119,13 @@ namespace System.Runtime.Remoting.Messaging {
                } 
 
                [MonoTODO]
-               public object HeaderHandler (Header[] h)
+               public virtual object HeaderHandler (Header[] h)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public void Init ()
+               public virtual void Init ()
                {
                        throw new NotImplementedException ();
                }
index 626d6b8a79982e43f0bdd9ba78a08c2c7dade795..457006832ee2c5983f979014d7c5e7e10c40ba93 100644 (file)
@@ -24,12 +24,12 @@ namespace System.Runtime.Remoting.Messaging {
                protected IDictionary InternalProperties;
 
                [MonoTODO]
-               public virtual int ArgCount {
+               public int ArgCount {
                        get { throw new NotImplementedException (); }
                }
 
                [MonoTODO]
-               public virtual object[] Args {
+               public object[] Args {
                        get { throw new NotImplementedException (); }
                        set { throw new NotImplementedException (); }
                }
@@ -40,37 +40,37 @@ namespace System.Runtime.Remoting.Messaging {
                }
                
                [MonoTODO]
-               public virtual bool HasVarArgs {
+               public bool HasVarArgs {
                        get { throw new NotImplementedException (); }
                }
                
                [MonoTODO]
-               public virtual LogicalCallContext LogicalCallContext {
+               public LogicalCallContext LogicalCallContext {
                        get { throw new NotImplementedException (); }
                }
                
                [MonoTODO]
-               public virtual MethodBase MethodBase {
+               public MethodBase MethodBase {
                        get { throw new NotImplementedException (); }
                }
 
                [MonoTODO]
-               public virtual string MethodName {
+               public string MethodName {
                        get { throw new NotImplementedException (); }
                }
 
                [MonoTODO]
-               public virtual object MethodSignature {
+               public object MethodSignature {
                        get { throw new NotImplementedException (); }
                }
 
                [MonoTODO]
-               public virtual int OutArgCount {
+               public int OutArgCount {
                        get { throw new NotImplementedException (); }
                }
 
                [MonoTODO]
-               public virtual object[] OutArgs {
+               public object[] OutArgs {
                        get { throw new NotImplementedException (); }
                        set { throw new NotImplementedException (); }
                }
@@ -86,42 +86,42 @@ namespace System.Runtime.Remoting.Messaging {
                }
 
                [MonoTODO]
-               public virtual string TypeName {
+               public string TypeName {
                        get { throw new NotImplementedException (); }
                }
 
                [MonoTODO]
-               public virtual string Uri {
+               public string Uri {
                        get { throw new NotImplementedException (); }
                        set { throw new NotImplementedException (); }
                }
 
                [MonoTODO]
-               public virtual object GetArg (int argNum)
+               public object GetArg (int argNum)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual string GetArgName (int index)
+               public string GetArgName (int index)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public void GetObjectData (SerializationInfo info, StreamingContext context)
+               public virtual void GetObjectData (SerializationInfo info, StreamingContext context)
                {
                        throw new NotImplementedException ();
                } 
 
                [MonoTODO]
-               public virtual object GetOutArg (int argNum)
+               public object GetOutArg (int argNum)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual string GetOutArgName (int index)
+               public string GetOutArgName (int index)
                {
                        throw new NotImplementedException ();
                }