using System; namespace Vinno.IUS.Common.Network.Channels { interface IChannelFactory : IDisposable { /// <summary> /// Apply the channel. /// </summary> IChannelProxy GetChannel(); } }