IChannelReceiver.cs 399 B

123456789101112131415161718192021
  1. //
  2. // System.Runtime.Remoting.Channels.IChannelReceiver.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. namespace System.Runtime.Remoting.Channels {
  9. public interface IChannelReceiver : IChannel
  10. {
  11. object ChannelData { get; }
  12. string [] GetUrlsForUri (string objectUri);
  13. void StartListening (object data);
  14. void StopListening (object data);
  15. }
  16. }