Implemented interface member:
method
CreateChannel
System.ServiceModel.Channels.IChannelFactory<TChannel>.CreateChannel(System.ServiceModel.EndpointAddress, System.Uri)
1 override of CreateChannel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexChannelFactory.cs (1)
202public override TChannel CreateChannel(EndpointAddress address, Uri via)
4 references to CreateChannel
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (3)
539return CreateChannel(address, address.Uri); 568return CreateChannel(this.CreateEndpointAddress(this.Endpoint), null); 656TChannel channel = channelFactory.CreateChannel(endpointAddress, via);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (1)
987return channelFactory.CreateChannel(_address, _via);