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