2 interfaces inheriting from IChannelFactory
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IAsyncChannelFactory.cs (1)
7public interface IAsyncChannelFactory : IChannelFactory, IAsyncCommunicationObject
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IChannelFactory.cs (1)
15public interface IChannelFactory<TChannel> : IChannelFactory
2 implementations of IChannelFactory
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (1)
14public abstract class ChannelFactory : CommunicationObject, IChannelFactory, IDisposable
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
10public abstract class ChannelFactoryBase : ChannelManagerBase, IChannelFactory
9 references to IChannelFactory
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (3)
17private IChannelFactory _innerFactory; 91internal IChannelFactory InnerFactory 147protected virtual IChannelFactory CreateFactory()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBase.cs (2)
74IChannelFactory factory = _channelManager as IChannelFactory;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
49if (typeof(T) == typeof(IChannelFactory))
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (3)
11private IChannelFactory _innerChannelFactory; 13public LayeredChannelFactory(IDefaultCommunicationTimeouts timeouts, IChannelFactory innerChannelFactory) 19protected IChannelFactory InnerChannelFactory