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