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