| 1234567891011121314151617 |
- //
- // System.Runtime.Remoting.IChannelInfo.cs
- //
- // AUthor: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright. Ximian, Inc.
- //
- using System;
- namespace System.Runtime.Remoting {
- public interface IChannelInfo
- {
- object[] ChannelData { get; set; }
- }
- }
|