e6cec1043326bd4ed0befc4c534e1d52b91d819b
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / IChannel.cs
1 //
2 // System.Runtime.Remoting.Channels.IChannel.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 IChannel
12         {
13                 string ChannelName { get; }
14
15                 int ChannelPriorirty { get; }
16
17                 string Parse (string url, out string objectURI);
18         }
19 }