* RemotingConfiguration.cs: Implemented all remaining functionality.
[mono.git] / mcs / class / corlib / System.Runtime.Remoting / IChannelInfo.cs
1 //
2 // System.Runtime.Remoting.IChannelInfo.cs
3 //
4 // AUthor: Duncan Mak  (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright. Ximian, Inc.
7 //
8
9 using System;
10
11 namespace System.Runtime.Remoting {
12
13         public interface IChannelInfo
14         {
15                 object[] ChannelData { get; set; }
16         }
17 }