5 overrides of BuildChannelFactory
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (1)
103public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsBinding.cs (1)
59public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (1)
112public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpsBinding.cs (1)
69public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (1)
79public override IChannelFactory<TChannel> BuildChannelFactory<TChannel>(BindingParameterCollection parameters)
16 references to BuildChannelFactory
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (1)
112return base.BuildChannelFactory<TChannel>(parameters);
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsBinding.cs (1)
68return base.BuildChannelFactory<TChannel>(parameters);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (1)
166return this.BuildChannelFactory<TChannel>(new BindingParameterCollection(parameters));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBuilder.cs (1)
65return _binding.BuildChannelFactory<TChannel>(_bindingParameters);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (9)
134return new ServiceChannelFactoryOverOutput(customBinding.BuildChannelFactory<IOutputChannel>(parameters), clientRuntime, binding); 139return new ServiceChannelFactoryOverRequest(customBinding.BuildChannelFactory<IRequestChannel>(parameters), clientRuntime, binding); 151return new ServiceChannelFactoryOverDuplex(customBinding.BuildChannelFactory<IDuplexChannel>(parameters), clientRuntime, binding); 156return new ServiceChannelFactoryOverOutputSession(customBinding.BuildChannelFactory<IOutputSessionChannel>(parameters), clientRuntime, binding, false); 161return new ServiceChannelFactoryOverRequestSession(customBinding.BuildChannelFactory<IRequestSessionChannel>(parameters), clientRuntime, binding, false); 173return new ServiceChannelFactoryOverDuplexSession(customBinding.BuildChannelFactory<IDuplexSessionChannel>(parameters), clientRuntime, binding, useActiveAutoClose); 182return new ServiceChannelFactoryOverOutputSession(customBinding.BuildChannelFactory<IOutputSessionChannel>(parameters), clientRuntime, binding, true); 187return new ServiceChannelFactoryOverRequestSession(customBinding.BuildChannelFactory<IRequestSessionChannel>(parameters), clientRuntime, binding, true); 195return new ServiceChannelFactoryOverRequest(customBinding.BuildChannelFactory<IRequestChannel>(parameters), clientRuntime, binding);
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (1)
121return base.BuildChannelFactory<TChannel>(parameters);
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpsBinding.cs (1)
78return base.BuildChannelFactory<TChannel>(parameters);
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (1)
87return base.BuildChannelFactory<TChannel>(parameters);