Merge pull request #2840 from directhex/fix_make_dist_commoncrypto
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / ClientChannelSinkStack.cs
index 6f17d36d0bb94014a7bc7a7b5e9ba0c334414e94..ce44a3ded555534d5b806ab3dac678287fe93635 100644 (file)
@@ -35,6 +35,7 @@ using System.Runtime.Remoting.Messaging;
 
 namespace System.Runtime.Remoting.Channels
 {
+       [System.Runtime.InteropServices.ComVisible (true)]
        public class ClientChannelSinkStack : IClientChannelSinkStack, IClientResponseChannelSinkStack
        {
                // The sink where to send the result of the async call
@@ -47,9 +48,9 @@ namespace System.Runtime.Remoting.Channels
                {
                }
                
-               public ClientChannelSinkStack (IMessageSink sink)
+               public ClientChannelSinkStack (IMessageSink replySink)
                {
-                       _replySink = sink;
+                       _replySink = replySink;
                }
 
                public void AsyncProcessResponse (ITransportHeaders headers, Stream stream)