5 references to CreateChannel
System.ServiceModel (5)
System\ServiceModel\ChannelFactory.cs (1)
711
return (TChannel)this.ServiceChannelFactory.
CreateChannel
(typeof(TChannel), address, via);
System\ServiceModel\Channels\ServiceChannelFactory.cs (2)
356
return (TChannel)this.
CreateChannel
(typeof(TChannel), address, via);
363
return this.
CreateChannel
(channelType, address, null);
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (1)
120
object transparentProxy = serviceChannelFactory.
CreateChannel
(contractType, new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri);
System\ServiceModel\DuplexChannelFactory.cs (1)
251
TChannel result = (TChannel)this.ServiceChannelFactory.
CreateChannel
(typeof(TChannel), address, via);