10 references to ChannelFactory
System.ServiceModel (9)
System\ServiceModel\ChannelFactory.cs (3)
585: this(binding, (EndpointAddress)null) 590: this(binding, new EndpointAddress(remoteAddress)) 888ChannelFactory<TChannel> channelFactory = new ChannelFactory<TChannel>(binding, endpointAddress);
System\ServiceModel\ClientBase.cs (1)
160this.channelFactoryRef = new ChannelFactoryRef<TChannel>(new ChannelFactory<TChannel>(binding, remoteAddress));
System\ServiceModel\PeerResolvers\PeerDefaultCustomResolverClient.cs (1)
79channelFactory = new ChannelFactory<IPeerResolverClient>(binding, address);
System\ServiceModel\ProgrammaticEndpointTrait.cs (1)
85return new ChannelFactory<TChannel>(this.binding, this.remoteAddress);
System\ServiceModel\Security\WSTrustChannelFactory.cs (1)
131: base(binding, remoteAddress)
System\ServiceModel\Security\WSTrustDec2005.cs (1)
115ChannelFactory<IWsTrustDec2005SecurityTokenService> result = new ChannelFactory<IWsTrustDec2005SecurityTokenService>(binding, address);
System\ServiceModel\Security\WSTrustFeb2005.cs (1)
252ChannelFactory<IWsTrustFeb2005SecurityTokenService> result = new ChannelFactory<IWsTrustFeb2005SecurityTokenService>(binding, address);
System.ServiceModel.Web (1)
System\ServiceModel\Web\WebChannelFactory.cs (1)
54: base(binding, (remoteAddress != null) ? new EndpointAddress(remoteAddress) : null)