17 references to CanBuildChannelFactory
dotnet-svcutil-lib (17)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (1)
193return this.CanBuildChannelFactory<TChannel>(new BindingParameterCollection(parameters));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBuilder.cs (1)
71return _binding.CanBuildChannelFactory<TChannel>(_bindingParameters);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (15)
132if (type == typeof(IOutputChannel) && customBinding.CanBuildChannelFactory<IOutputChannel>(parameters)) 137if (type == typeof(IRequestChannel) && customBinding.CanBuildChannelFactory<IRequestChannel>(parameters)) 142if (type == typeof(IDuplexChannel) && customBinding.CanBuildChannelFactory<IDuplexChannel>(parameters)) 154if (type == typeof(IOutputSessionChannel) && customBinding.CanBuildChannelFactory<IOutputSessionChannel>(parameters)) 159if (type == typeof(IRequestSessionChannel) && customBinding.CanBuildChannelFactory<IRequestSessionChannel>(parameters)) 164if (type == typeof(IDuplexSessionChannel) && customBinding.CanBuildChannelFactory<IDuplexSessionChannel>(parameters)) 180if (type == typeof(IOutputChannel) && customBinding.CanBuildChannelFactory<IOutputSessionChannel>(parameters)) 185if (type == typeof(IRequestChannel) && customBinding.CanBuildChannelFactory<IRequestSessionChannel>(parameters)) 192if (type == typeof(IRequestSessionChannel) && customBinding.CanBuildChannelFactory<IRequestChannel>(parameters) 201if (customBinding.CanBuildChannelFactory<IOutputChannel>(parameters)) 205if (customBinding.CanBuildChannelFactory<IRequestChannel>(parameters)) 209if (customBinding.CanBuildChannelFactory<IDuplexChannel>(parameters)) 213if (customBinding.CanBuildChannelFactory<IOutputSessionChannel>(parameters)) 217if (customBinding.CanBuildChannelFactory<IRequestSessionChannel>(parameters)) 221if (customBinding.CanBuildChannelFactory<IDuplexSessionChannel>(parameters))