IChannelDataStore.cs 312 B

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