Implemented interface member:
method
CreateChannel
System.ServiceModel.Channels.IChannelFactory<TChannel>.CreateChannel(System.ServiceModel.EndpointAddress, System.Uri)
2 overrides of CreateChannel
System.ServiceModel.Federation (1)
System\ServiceModel\Federation\WSTrustChannelFactory.cs (1)
46
public override IWSTrustChannelContract
CreateChannel
(EndpointAddress endpointAddress, Uri via)
System.ServiceModel.Primitives (1)
System\ServiceModel\DuplexChannelFactory.cs (1)
160
public override TChannel
CreateChannel
(EndpointAddress address, Uri via)
5 references to CreateChannel
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannelFactory.cs (2)
51
return new WSTrustChannel(base.
CreateChannel
(endpointAddress, via) as IRequestChannel);
60
return new WSTrustChannel(base.
CreateChannel
(EndpointAddress, EndpointAddress.Uri) as IRequestChannel);
System.ServiceModel.Primitives (3)
System\ServiceModel\ChannelFactory.cs (3)
458
return
CreateChannel
(address, address.Uri);
487
return
CreateChannel
(CreateEndpointAddress(Endpoint), null);
572
TChannel channel = channelFactory.
CreateChannel
(endpointAddress, via);