7 overrides of BuildChannelFactory
System.ServiceModel (6)
System\ServiceModel\BasicHttpBinding.cs (1)
141public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\BasicHttpsBinding.cs (1)
77public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (1)
58public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\NetHttpBinding.cs (1)
115public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\NetHttpsBinding.cs (1)
108public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\WSHttpBinding.cs (1)
98public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System.ServiceModel.Web (1)
System\ServiceModel\WebHttpBinding.cs (1)
204public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
17 references to BuildChannelFactory
System.ServiceModel (16)
System\ServiceModel\BasicHttpBinding.cs (1)
150return base.BuildChannelFactory<TChannel>(parameters);
System\ServiceModel\BasicHttpsBinding.cs (1)
86return base.BuildChannelFactory<TChannel>(parameters);
System\ServiceModel\Channels\Binding.cs (1)
174return this.BuildChannelFactory<TChannel>(new BindingParameterCollection(parameters));
System\ServiceModel\Channels\ChannelBuilder.cs (1)
87return this.binding.BuildChannelFactory<TChannel>(this.bindingParameters);
System\ServiceModel\Channels\ServiceChannelFactory.cs (9)
140return new ServiceChannelFactoryOverOutput(customBinding.BuildChannelFactory<IOutputChannel>(parameters), clientRuntime, binding); 145return new ServiceChannelFactoryOverRequest(customBinding.BuildChannelFactory<IRequestChannel>(parameters), clientRuntime, binding); 157return new ServiceChannelFactoryOverDuplex(customBinding.BuildChannelFactory<IDuplexChannel>(parameters), clientRuntime, binding); 162return new ServiceChannelFactoryOverOutputSession(customBinding.BuildChannelFactory<IOutputSessionChannel>(parameters), clientRuntime, binding, false); 167return new ServiceChannelFactoryOverRequestSession(customBinding.BuildChannelFactory<IRequestSessionChannel>(parameters), clientRuntime, binding, false); 179return new ServiceChannelFactoryOverDuplexSession(customBinding.BuildChannelFactory<IDuplexSessionChannel>(parameters), clientRuntime, binding, useActiveAutoClose); 188return new ServiceChannelFactoryOverOutputSession(customBinding.BuildChannelFactory<IOutputSessionChannel>(parameters), clientRuntime, binding, true); 193return new ServiceChannelFactoryOverRequestSession(customBinding.BuildChannelFactory<IRequestSessionChannel>(parameters), clientRuntime, binding, true); 201return new ServiceChannelFactoryOverRequest(customBinding.BuildChannelFactory<IRequestChannel>(parameters), clientRuntime, binding);
System\ServiceModel\NetHttpBinding.cs (1)
124return base.BuildChannelFactory<TChannel>(parameters);
System\ServiceModel\NetHttpsBinding.cs (1)
117return base.BuildChannelFactory<TChannel>(parameters);
System\ServiceModel\WSHttpBinding.cs (1)
106return base.BuildChannelFactory<TChannel>(parameters);
System.ServiceModel.Web (1)
System\ServiceModel\WebHttpBinding.cs (1)
213return base.BuildChannelFactory<TChannel>(parameters);