5 overrides of BuildChannelFactory
System.ServiceModel.Http (5)
System\ServiceModel\BasicHttpBinding.cs (1)
52public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\BasicHttpsBinding.cs (1)
51public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\NetHttpBinding.cs (1)
92public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\NetHttpsBinding.cs (1)
84public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
System\ServiceModel\WSHttpBinding.cs (1)
50public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
21 references to BuildChannelFactory
Client.ChannelLayer.IntegrationTests (4)
DuplexChannelShapeTests.4.0.0.cs (2)
37factory = binding.BuildChannelFactory<IDuplexSessionChannel>(new BindingParameterCollection()); 92factory = binding.BuildChannelFactory<IDuplexSessionChannel>(new BindingParameterCollection());
RequestReplyChannelShapeTests.4.0.0.cs (2)
90factory = binding.BuildChannelFactory<IRequestChannel>(new BindingParameterCollection()); 198factory = binding.BuildChannelFactory<IRequestChannel>(new BindingParameterCollection());
System.ServiceModel.Http (5)
System\ServiceModel\BasicHttpBinding.cs (1)
61return base.BuildChannelFactory<TChannel>(parameters);
System\ServiceModel\BasicHttpsBinding.cs (1)
60return base.BuildChannelFactory<TChannel>(parameters);
System\ServiceModel\NetHttpBinding.cs (1)
101return base.BuildChannelFactory<TChannel>(parameters);
System\ServiceModel\NetHttpsBinding.cs (1)
93return base.BuildChannelFactory<TChannel>(parameters);
System\ServiceModel\WSHttpBinding.cs (1)
58return base.BuildChannelFactory<TChannel>(parameters);
System.ServiceModel.Primitives (11)
System\ServiceModel\Channels\Binding.cs (1)
171return BuildChannelFactory<TChannel>(new BindingParameterCollection(parameters));
System\ServiceModel\Channels\ChannelBuilder.cs (1)
69return Binding.BuildChannelFactory<TChannel>(BindingParameters);
System\ServiceModel\Channels\ServiceChannelFactory.cs (9)
124return new ServiceChannelFactoryOverOutput(customBinding.BuildChannelFactory<IOutputChannel>(parameters), clientRuntime, binding); 129return new ServiceChannelFactoryOverRequest(customBinding.BuildChannelFactory<IRequestChannel>(parameters), clientRuntime, binding); 141return new ServiceChannelFactoryOverDuplex(customBinding.BuildChannelFactory<IDuplexChannel>(parameters), clientRuntime, binding); 146return new ServiceChannelFactoryOverOutputSession(customBinding.BuildChannelFactory<IOutputSessionChannel>(parameters), clientRuntime, binding, false); 151return new ServiceChannelFactoryOverRequestSession(customBinding.BuildChannelFactory<IRequestSessionChannel>(parameters), clientRuntime, binding, false); 163return new ServiceChannelFactoryOverDuplexSession(customBinding.BuildChannelFactory<IDuplexSessionChannel>(parameters), clientRuntime, binding, useActiveAutoClose); 172return new ServiceChannelFactoryOverOutputSession(customBinding.BuildChannelFactory<IOutputSessionChannel>(parameters), clientRuntime, binding, true); 177return new ServiceChannelFactoryOverRequestSession(customBinding.BuildChannelFactory<IRequestSessionChannel>(parameters), clientRuntime, binding, true); 185return new ServiceChannelFactoryOverRequest(customBinding.BuildChannelFactory<IRequestChannel>(parameters), clientRuntime, binding);
System.ServiceModel.Primitives.Tests (1)
Channels\CustomBindingTest.cs (1)
26IChannelFactory<IRequestChannel> factory = binding.BuildChannelFactory<IRequestChannel>(new BindingParameterCollection());