1 type derived from ChannelFactory
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexChannelFactory.cs (1)
11
public class DuplexChannelFactory<TChannel> :
ChannelFactory
<TChannel>
10 instantiations of ChannelFactory
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (3)
621
ChannelFactory<TChannel> channelFactory = new
ChannelFactory
<TChannel>(endpointConfigurationName);
635
ChannelFactory<TChannel> channelFactory = new
ChannelFactory
<TChannel>(binding, endpointAddress);
649
ChannelFactory<TChannel> channelFactory = new
ChannelFactory
<TChannel>(binding);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
52
_channelFactory = new
ChannelFactory
<TChannel>(binding, remoteAddress);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (4)
47
_factory = new
ChannelFactory
<IMetadataExchange>("*");
82
_factory = new
ChannelFactory
<IMetadataExchange>(endpointConfigurationName);
91
_factory = new
ChannelFactory
<IMetadataExchange>(mexBinding);
199
_factory = new
ChannelFactory
<IMetadataExchange>(mexBinding);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (1)
114
ChannelFactory<IWsTrustDec2005SecurityTokenService> result = new
ChannelFactory
<IWsTrustDec2005SecurityTokenService>(binding, address);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (1)
210
ChannelFactory<IWsTrustFeb2005SecurityTokenService> result = new
ChannelFactory
<IWsTrustFeb2005SecurityTokenService>(binding, address);
15 references to ChannelFactory
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (3)
621
ChannelFactory
<TChannel> channelFactory = new ChannelFactory<TChannel>(endpointConfigurationName);
635
ChannelFactory
<TChannel> channelFactory = new ChannelFactory<TChannel>(binding, endpointAddress);
649
ChannelFactory
<TChannel> channelFactory = new ChannelFactory<TChannel>(binding);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (3)
19
private
ChannelFactory
<TChannel> _channelFactory;
109
public
ChannelFactory
<TChannel> ChannelFactory
532
ChannelFactory
<T> cf = client._channelFactory;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (5)
29
private
ChannelFactory
<IMetadataExchange> _factory;
405
protected internal virtual
ChannelFactory
<IMetadataExchange> GetChannelFactory(EndpointAddress metadataAddress, string dialect, string identifier)
954
ChannelFactory
<IMetadataExchange> channelFactory;
983
private IMetadataExchange CreateChannel(
ChannelFactory
<IMetadataExchange> channelFactory)
1007
ChannelFactory
<IMetadataExchange> channelFactory;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (1)
114
ChannelFactory
<IWsTrustDec2005SecurityTokenService> result = new ChannelFactory<IWsTrustDec2005SecurityTokenService>(binding, address);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (3)
210
ChannelFactory
<IWsTrustFeb2005SecurityTokenService> result = new ChannelFactory<IWsTrustFeb2005SecurityTokenService>(binding, address);
254
private
ChannelFactory
<TokenService> _innerChannelFactory;
256
public RequestChannelFactory(
ChannelFactory
<TokenService> innerChannelFactory)