IChannelFactory.cs 234 B

123456789101112
  1. using System;
  2. namespace Vinno.IUS.Common.Network.Channels
  3. {
  4. interface IChannelFactory : IDisposable
  5. {
  6. /// <summary>
  7. /// Apply the channel.
  8. /// </summary>
  9. IChannelProxy GetChannel();
  10. }
  11. }