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)
46public override IWSTrustChannelContract CreateChannel(EndpointAddress endpointAddress, Uri via)
System.ServiceModel.Primitives (1)
System\ServiceModel\DuplexChannelFactory.cs (1)
160public override TChannel CreateChannel(EndpointAddress address, Uri via)
5 references to CreateChannel
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannelFactory.cs (2)
51return new WSTrustChannel(base.CreateChannel(endpointAddress, via) as IRequestChannel); 60return new WSTrustChannel(base.CreateChannel(EndpointAddress, EndpointAddress.Uri) as IRequestChannel);
System.ServiceModel.Primitives (3)
System\ServiceModel\ChannelFactory.cs (3)
458return CreateChannel(address, address.Uri); 487return CreateChannel(CreateEndpointAddress(Endpoint), null); 572TChannel channel = channelFactory.CreateChannel(endpointAddress, via);