Implemented interface member:
method
CreateChannel
System.ServiceModel.Channels.IChannelFactory<TChannel>.CreateChannel(System.ServiceModel.EndpointAddress, System.Uri)
2 overrides of CreateChannel
System.ServiceModel (2)
System\ServiceModel\DuplexChannelFactory.cs (1)
211public override TChannel CreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Security\WSTrustChannelFactory.cs (1)
341public override IWSTrustChannelContract CreateChannel(EndpointAddress address, Uri via)
10 references to CreateChannel
System.ServiceModel (8)
System\ServiceModel\ChannelFactory.cs (6)
684return CreateChannel(address, address.Uri); 722return CreateChannel(this.CreateEndpointAddress(this.Endpoint), null); 745TChannel channel = this.CreateChannel(address, via); 772TChannel channel = this.CreateChannel(address, via); 799TChannel channel = this.CreateChannel(address, via); 909TChannel channel = channelFactory.CreateChannel(endpointAddress, via);
System\ServiceModel\Description\MetadataExchangeClient.cs (1)
1029return channelFactory.CreateChannel(this.address, this.via);
System\ServiceModel\Security\WSTrustChannelFactory.cs (1)
343IWSTrustChannelContract innerChannel = base.CreateChannel(address, via);
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\InternalSendMessage.cs (2)
2897result = ((ChannelFactory<IOutputChannel>)this.channelFactory).CreateChannel(endpointAddress, via); 2901result = ((ChannelFactory<IRequestChannel>)this.channelFactory).CreateChannel(endpointAddress, via);