IChannelInfo.cs 263 B

1234567891011121314151617
  1. //
  2. // System.Runtime.Remoting.IChannelInfo.cs
  3. //
  4. // AUthor: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright. Ximian, Inc.
  7. //
  8. using System;
  9. namespace System.Runtime.Remoting {
  10. public interface IChannelInfo
  11. {
  12. object[] ChannelData { get; set; }
  13. }
  14. }