4 writes to binding
System.ServiceModel (4)
System\ServiceModel\Channels\ChannelBuilder.cs (4)
25this.binding = new CustomBinding(context.Binding, context.RemainingBindingElements); 31this.binding = new CustomBinding(binding); 41this.binding = new CustomBinding(channelBuilder.Binding); 52set { this.binding = value; }
7 references to binding
System.ServiceModel (7)
System\ServiceModel\Channels\ChannelBuilder.cs (7)
35this.AddDemuxerBindingElement(this.binding.Elements); 43if (this.binding.Elements.Find<ChannelDemuxerBindingElement>() == null) 51get { return this.binding; } 87return this.binding.BuildChannelFactory<TChannel>(this.bindingParameters); 102return this.binding.BuildChannelListener<TChannel>(this.listenUri, this.bindingParameters); 117return this.binding.CanBuildChannelFactory<TChannel>(this.bindingParameters); 122return this.binding.CanBuildChannelListener<TChannel>(this.bindingParameters);