1 override of CanBuildChannelFactory
System.ServiceModel (1)
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (1)
102public override bool CanBuildChannelFactory<TChannel>(BindingParameterCollection parameters)
17 references to CanBuildChannelFactory
System.ServiceModel (17)
System\ServiceModel\Channels\Binding.cs (1)
256return this.CanBuildChannelFactory<TChannel>(new BindingParameterCollection(parameters));
System\ServiceModel\Channels\ChannelBuilder.cs (1)
117return this.binding.CanBuildChannelFactory<TChannel>(this.bindingParameters);
System\ServiceModel\Channels\ServiceChannelFactory.cs (15)
138if (type == typeof(IOutputChannel) && customBinding.CanBuildChannelFactory<IOutputChannel>(parameters)) 143if (type == typeof(IRequestChannel) && customBinding.CanBuildChannelFactory<IRequestChannel>(parameters)) 148if (type == typeof(IDuplexChannel) && customBinding.CanBuildChannelFactory<IDuplexChannel>(parameters)) 160if (type == typeof(IOutputSessionChannel) && customBinding.CanBuildChannelFactory<IOutputSessionChannel>(parameters)) 165if (type == typeof(IRequestSessionChannel) && customBinding.CanBuildChannelFactory<IRequestSessionChannel>(parameters)) 170if (type == typeof(IDuplexSessionChannel) && customBinding.CanBuildChannelFactory<IDuplexSessionChannel>(parameters)) 186if (type == typeof(IOutputChannel) && customBinding.CanBuildChannelFactory<IOutputSessionChannel>(parameters)) 191if (type == typeof(IRequestChannel) && customBinding.CanBuildChannelFactory<IRequestSessionChannel>(parameters)) 198if (type == typeof(IRequestSessionChannel) && customBinding.CanBuildChannelFactory<IRequestChannel>(parameters) 207if (customBinding.CanBuildChannelFactory<IOutputChannel>(parameters)) 211if (customBinding.CanBuildChannelFactory<IRequestChannel>(parameters)) 215if (customBinding.CanBuildChannelFactory<IDuplexChannel>(parameters)) 219if (customBinding.CanBuildChannelFactory<IOutputSessionChannel>(parameters)) 223if (customBinding.CanBuildChannelFactory<IRequestSessionChannel>(parameters)) 227if (customBinding.CanBuildChannelFactory<IDuplexSessionChannel>(parameters))