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