2002-07-31 Duncan Mak <duncan@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / IChannelReceiver.cs
1 //
2 // System.Runtime.Remoting.Channels.IChannelReceiver.cs
3 //
4 // Author: Duncan Mak (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright, Ximian, Inc.
7 //
8
9 namespace System.Runtime.Remoting.Channels {
10
11         public interface IChannelReceiver : IChannel
12         {
13                 object ChannelData { get; }
14
15                 string [] GetUrlsForUris (string objectUri);
16
17                 void StartListening (object data);
18
19                 void StopListening (object data);
20         }
21 }