3 implementations of CreateChannel
System.ServiceModel.Primitives (3)
System\ServiceModel\ChannelFactory.cs (1)
461public virtual TChannel CreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
118public TChannel CreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
797IRequestChannel IChannelFactory<IRequestChannel>.CreateChannel(EndpointAddress to, Uri via)
18 references to CreateChannel
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
85TChannel innerChannel = this.innerChannelFactory.CreateChannel(to, via);
System.ServiceModel.Primitives (16)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (2)
23: base(factory.CreateChannel(to, via), maskingMode, faultMode, 209channel = _factory.CreateChannel(_to, Via);
System\ServiceModel\Channels\SecurityChannelFactory.cs (6)
150return (TChannel)(object)new SecurityOutputChannel(this, SecurityProtocolFactory, ((IChannelFactory<IOutputChannel>)InnerChannelFactory).CreateChannel(address, via), address, via); 154return (TChannel)(object)new SecurityOutputSessionChannel(this, SecurityProtocolFactory, ((IChannelFactory<IOutputSessionChannel>)InnerChannelFactory).CreateChannel(address, via), address, via); 158return (TChannel)(object)new SecurityDuplexChannel(this, SecurityProtocolFactory, ((IChannelFactory<IDuplexChannel>)InnerChannelFactory).CreateChannel(address, via), address, via); 162return (TChannel)(object)new SecurityDuplexSessionChannel(this, SecurityProtocolFactory, ((IChannelFactory<IDuplexSessionChannel>)InnerChannelFactory).CreateChannel(address, via), address, via); 166return (TChannel)(object)new SecurityRequestChannel(this, SecurityProtocolFactory, ((IChannelFactory<IRequestChannel>)InnerChannelFactory).CreateChannel(address, via), address, via); 170return (TChannel)(object)new SecurityRequestSessionChannel(this, SecurityProtocolFactory, ((IChannelFactory<IRequestSessionChannel>)InnerChannelFactory).CreateChannel(address, via), address, via);
System\ServiceModel\Channels\ServiceChannelFactory.cs (6)
520return new OutputChannelBinder(InnerChannelFactory.CreateChannel(to, via)); 539return new DuplexChannelBinder(InnerChannelFactory.CreateChannel(to, via), RequestReplyCorrelator); 559return new RequestChannelBinder(InnerChannelFactory.CreateChannel(to, via)); 582channel = InnerChannelFactory.CreateChannel(to, via); 609return new DuplexChannelBinder(InnerChannelFactory.CreateChannel(to, via), RequestReplyCorrelator, _useActiveAutoClose); 638channel = InnerChannelFactory.CreateChannel(to, via);
System\ServiceModel\Security\NegotiationTokenProvider.cs (1)
160return _rstChannelFactory.CreateChannel(target, via);
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
432channel = cf.CreateChannel(target, via);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
127TChannel innerChannel = _innerFactory.CreateChannel(to, via);