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