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)
211
public override TChannel
CreateChannel
(EndpointAddress address, Uri via)
System\ServiceModel\Security\WSTrustChannelFactory.cs (1)
341
public override IWSTrustChannelContract
CreateChannel
(EndpointAddress address, Uri via)
10 references to CreateChannel
System.ServiceModel (8)
System\ServiceModel\ChannelFactory.cs (6)
684
return
CreateChannel
(address, address.Uri);
722
return
CreateChannel
(this.CreateEndpointAddress(this.Endpoint), null);
745
TChannel channel = this.
CreateChannel
(address, via);
772
TChannel channel = this.
CreateChannel
(address, via);
799
TChannel channel = this.
CreateChannel
(address, via);
909
TChannel channel = channelFactory.
CreateChannel
(endpointAddress, via);
System\ServiceModel\Description\MetadataExchangeClient.cs (1)
1029
return channelFactory.
CreateChannel
(this.address, this.via);
System\ServiceModel\Security\WSTrustChannelFactory.cs (1)
343
IWSTrustChannelContract innerChannel = base.
CreateChannel
(address, via);
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\InternalSendMessage.cs (2)
2897
result = ((ChannelFactory<IOutputChannel>)this.channelFactory).
CreateChannel
(endpointAddress, via);
2901
result = ((ChannelFactory<IRequestChannel>)this.channelFactory).
CreateChannel
(endpointAddress, via);