2 writes to ChannelBuilder
System.ServiceModel (2)
System\ServiceModel\Channels\SymmetricSecurityBindingElement.cs (1)
235
sessionClientSettings.
ChannelBuilder
= channelBuilder;
System\ServiceModel\Channels\TransportSecurityBindingElement.cs (1)
129
sessionClientSettings.
ChannelBuilder
= channelBuilder;
8 references to ChannelBuilder
System.ServiceModel (8)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
33
: this(securityCapabilities, context, sessionClientSettings.
ChannelBuilder
, sessionClientSettings.CreateInnerChannelFactory())
System\ServiceModel\Security\SecuritySessionClientSettings.cs (7)
202
if (this.
ChannelBuilder
.CanBuildChannelFactory<IDuplexSessionChannel>())
204
return this.
ChannelBuilder
.BuildChannelFactory<IDuplexSessionChannel>();
206
else if (this.
ChannelBuilder
.CanBuildChannelFactory<IDuplexChannel>())
208
return this.
ChannelBuilder
.BuildChannelFactory<IDuplexChannel>();
210
else if (this.
ChannelBuilder
.CanBuildChannelFactory<IRequestChannel>())
212
return this.
ChannelBuilder
.BuildChannelFactory<IRequestChannel>();
671
ChannelBuilder channelBuilder = this.Settings.
ChannelBuilder
;