29 references to BuildInnerChannelFactory
System.ServiceModel (27)
System\ServiceModel\Channels\Binding.cs (1)
181IChannelFactory<TChannel> channelFactory = context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\BindingElement.cs (1)
26return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\ChannelBuilder.cs (1)
81IChannelFactory<TChannel> factory = this.context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3635return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
62return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\ContextChannelFactory.cs (1)
21: base(context == null ? null : context.Binding, context == null ? null : context.BuildInnerChannelFactory<TChannel>())
System\ServiceModel\Channels\HttpCookieContainerBindingElement.cs (1)
52return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\InternalDuplexBindingElement.cs (1)
64IChannelFactory<IOutputChannel> innerChannelFactory = context.Clone().BuildInnerChannelFactory<IOutputChannel>();
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
17this.innerChannelFactory = context.BuildInnerChannelFactory<IOutputChannel>();
System\ServiceModel\Channels\MessageEncodingBindingElement.cs (1)
43return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\OneWayChannelFactory.cs (3)
80: base(context.Binding, context.BuildInnerChannelFactory<IRequestChannel>()) 259: base(context.Binding, context.BuildInnerChannelFactory<IDuplexChannel>()) 365: base(context.Binding, context.BuildInnerChannelFactory<IDuplexSessionChannel>())
System\ServiceModel\Channels\PeerCustomResolverBindingElement.cs (1)
116return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\PnrpPeerResolverBindingElement.cs (1)
55return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\ReliableSessionBindingElement.cs (8)
323this, context.BuildInnerChannelFactory<IRequestSessionChannel>(), context.Binding); 329this, context.BuildInnerChannelFactory<IRequestChannel>(), context.Binding); 335this, context.BuildInnerChannelFactory<IDuplexSessionChannel>(), context.Binding); 341this, context.BuildInnerChannelFactory<IDuplexChannel>(), context.Binding); 350this, context.BuildInnerChannelFactory<IDuplexSessionChannel>(), context.Binding); 356this, context.BuildInnerChannelFactory<IDuplexChannel>(), context.Binding); 365this, context.BuildInnerChannelFactory<IRequestSessionChannel>(), context.Binding); 371this, context.BuildInnerChannelFactory<IRequestChannel>(), context.Binding);
System\ServiceModel\Channels\SslStreamSecurityBindingElement.cs (1)
94return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\TransactionChannelFactory.cs (1)
26: base(context.Binding, context.BuildInnerChannelFactory<TChannel>())
System\ServiceModel\Channels\TransactionFlowBindingElement.cs (1)
219return context.BuildInnerChannelFactory<TChannel>();
System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
62return context.BuildInnerChannelFactory<TChannel>();
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientBindingElement.cs (1)
120context.BuildInnerChannelFactory<TChannel>(),
System.ServiceModel.Routing (1)
System\ServiceModel\Channels\SynchronousSendBindingElement.cs (1)
65IChannelFactory<TChannel> innerFactory = context.BuildInnerChannelFactory<TChannel>();