2004-04-12 David Sheldon <dave-mono@earth.li>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / IChannelSender.cs
1 //
2 // System.Runtime.Remoting.Channels.IChannelSender.cs
3 //
4 // Author: Duncan Mak (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright, Ximian, Inc.
7 //
8
9 using System.Runtime.Remoting.Messaging;
10
11 namespace System.Runtime.Remoting.Channels {
12
13         public interface IChannelSender : IChannel
14         {
15                 IMessageSink CreateMessageSink (string url, object remoteChannelData, out string objectURI);
16         }
17 }