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