6 references to ServiceChannelFactory
System.ServiceModel (6)
System\ServiceModel\ChannelFactory.cs (4)
711return (TChannel)this.ServiceChannelFactory.CreateChannel(typeof(TChannel), address, via); 809return this.ServiceChannelFactory.CreateChannel<UChannel>(address); 815return this.ServiceChannelFactory.CreateChannel<UChannel>(address, via); 821return this.ServiceChannelFactory.CanCreateChannel<UChannel>();
System\ServiceModel\ClientBase.cs (1)
1120this.channel = cf.ServiceChannelFactory.CreateServiceChannel(client.Endpoint.Address, client.Endpoint.Address.Uri);
System\ServiceModel\DuplexChannelFactory.cs (1)
251TChannel result = (TChannel)this.ServiceChannelFactory.CreateChannel(typeof(TChannel), address, via);