19 references to CanBuildInnerChannelFactory
dotnet-svcutil-lib (19)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (1)
199return context.CanBuildInnerChannelFactory<TChannel>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BindingElement.cs (1)
34return context.CanBuildInnerChannelFactory<TChannel>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
73&& context.CanBuildInnerChannelFactory<IOutputChannel>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElement.cs (1)
137&& context.CanBuildInnerChannelFactory<TChannel>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageEncodingBindingElement.cs (1)
45return context.CanBuildInnerChannelFactory<TChannel>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OneWayBindingElement.cs (3)
88if (context.CanBuildInnerChannelFactory<IDuplexChannel>()) 94if (context.CanBuildInnerChannelFactory<IDuplexSessionChannel>()) 100if (context.CanBuildInnerChannelFactory<IRequestChannel>())
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (8)
354if (!(context.CanBuildInnerChannelFactory<IRequestChannel>() 355|| context.CanBuildInnerChannelFactory<IRequestSessionChannel>() 356|| context.CanBuildInnerChannelFactory<IDuplexChannel>() 357|| context.CanBuildInnerChannelFactory<IDuplexSessionChannel>())) 364return (context.CanBuildInnerChannelFactory<IRequestChannel>() || context.CanBuildInnerChannelFactory<IRequestSessionChannel>()); 368return (context.CanBuildInnerChannelFactory<IDuplexChannel>() || context.CanBuildInnerChannelFactory<IDuplexSessionChannel>());
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityBindingElement.cs (1)
103return context.CanBuildInnerChannelFactory<TChannel>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElement.cs (1)
194return context.CanBuildInnerChannelFactory<TChannel>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
68return context.CanBuildInnerChannelFactory<TChannel>();