5 writes to Binding
System.ServiceModel (3)
System\ServiceModel\Configuration\ChannelEndpointElement.cs (1)
57this.Binding = source.Binding;
System\ServiceModel\Configuration\ServiceMetadataEndpointElement.cs (1)
34channelEndpointElement.Binding = ConfigurationStrings.MexHttpBindingCollectionElementName;
System\ServiceModel\Description\ConfigWriter.cs (1)
48channelElement.Binding = bindingDV.BindingSectionName;
System.ServiceModel.Web (2)
System\ServiceModel\Configuration\WebHttpEndpointElement.cs (1)
183channelEndpointElement.Binding = WebHttpBinding.WebHttpBindingConfigurationStrings.WebHttpBindingCollectionElementName;
System\ServiceModel\Configuration\WebScriptEndpointElement.cs (1)
150channelEndpointElement.Binding = WebHttpBinding.WebHttpBindingConfigurationStrings.WebHttpBindingCollectionElementName;
16 references to Binding
System.ServiceModel (11)
System\ServiceModel\Configuration\ChannelEndpointElement.cs (1)
57this.Binding = source.Binding;
System\ServiceModel\Configuration\ClientSection.cs (3)
74if (string.IsNullOrEmpty(endpoint.Binding)) 83if (string.IsNullOrEmpty(endpoint.Binding) && !string.IsNullOrEmpty(endpoint.BindingConfiguration)) 88BindingsSection.ValidateBindingReference(endpoint.Binding, endpoint.BindingConfiguration, context, endpoint);
System\ServiceModel\Configuration\ServiceMetadataEndpointElement.cs (1)
32if (String.IsNullOrEmpty(channelEndpointElement.Binding))
System\ServiceModel\Description\ConfigLoader.cs (6)
162if (serviceEndpoint.Binding == null && !string.IsNullOrEmpty(channelElement.Binding)) 164serviceEndpoint.Binding = ConfigLoader.LookupBinding(channelElement.Binding, channelElement.BindingConfiguration, ConfigurationHelpers.GetEvaluationContext(channelElement)); 742if (!string.IsNullOrEmpty(channelEndpointElementCopy.Binding)) 744endpoint.Binding = ConfigLoader.LookupBinding(channelEndpointElementCopy.Binding, channelEndpointElementCopy.BindingConfiguration, ConfigurationHelpers.GetEvaluationContext(channelEndpointElement)); 1361if (!string.IsNullOrEmpty(retval.Binding)) 1363values["Binding"] = retval.Binding;
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\Configuration\AnnouncementChannelEndpointElementCollection.cs (1)
36channelEndpointElement.Binding);
System.ServiceModel.Web (4)
System\ServiceModel\Configuration\WebHttpEndpointElement.cs (2)
181if (string.IsNullOrEmpty(channelEndpointElement.Binding)) 185else if (!string.Equals(channelEndpointElement.Binding, WebHttpBinding.WebHttpBindingConfigurationStrings.WebHttpBindingCollectionElementName, StringComparison.Ordinal))
System\ServiceModel\Configuration\WebScriptEndpointElement.cs (2)
148if (string.IsNullOrEmpty(channelEndpointElement.Binding)) 152else if (!string.Equals(channelEndpointElement.Binding, WebHttpBinding.WebHttpBindingConfigurationStrings.WebHttpBindingCollectionElementName, StringComparison.Ordinal))