| 12345678910111213141516171819 |
- //
- // System.Runtime.Remoting.Channels.IChannel.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- namespace System.Runtime.Remoting.Channels {
- public interface IChannel
- {
- string ChannelName { get; }
- int ChannelPriority { get; }
- string Parse (string url, out string objectURI);
- }
- }
|