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