3 implementations of CreateChannel
System.ServiceModel (3)
System\ServiceModel\ChannelFactory.cs (1)
677public TChannel CreateChannel(EndpointAddress address)
System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
102public TChannel CreateChannel(EndpointAddress address)
System\ServiceModel\Security\WSTrustFeb2005.cs (1)
303public IRequestChannel CreateChannel(EndpointAddress address)
4 references to CreateChannel
System.ServiceModel (4)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
23IOutputChannel channel = this.innerChannelFactory.CreateChannel(new EndpointAddress(to));
System\ServiceModel\Security\NegotiationTokenProvider.cs (1)
176return this.rstChannelFactory.CreateChannel(target);
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
507channel = cf.CreateChannel(target);
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
788IRequestChannel result = this.channelFactory.CreateChannel(this.IssuerAddress);