IChannel.cs 334 B

12345678910111213141516171819
  1. //
  2. // System.Runtime.Remoting.Channels.IChannel.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 IChannel
  10. {
  11. string ChannelName { get; }
  12. int ChannelPriority { get; }
  13. string Parse (string url, out string objectURI);
  14. }
  15. }