4 writes to BindingConfiguration
ComSvcConfig (1)
EndpointConfigContainer.cs (1)
321endpointElement.BindingConfiguration = endpointConfig.BindingName;
System.ServiceModel (1)
System\ServiceModel\Configuration\ServiceEndpointElement.cs (1)
46this.BindingConfiguration = source.BindingConfiguration;
System.ServiceModel.Web (2)
System\ServiceModel\Web\AutomaticEndpointGenerator.cs (1)
126serviceEndpointElement.BindingConfiguration = protocolMappingItem.BindingConfiguration;
System\ServiceModel\Web\WebServiceHost.cs (1)
128serviceEndpointElement.BindingConfiguration = protocolMappingItem.BindingConfiguration;
12 references to BindingConfiguration
ComSvcConfig (2)
EndpointConfigContainer.cs (2)
556ee.BindingConfiguration, 567ee.BindingConfiguration,
System.ServiceModel (10)
System\ServiceModel\ComIntegration\ComPlusDiagnosticTraceRecords.cs (1)
94endpointElement.Address.ToString(), endpointElement.BindingConfiguration, endpointElement.BindingName, endpointElement.BindingNamespace,
System\ServiceModel\Configuration\ServiceEndpointElement.cs (1)
46this.BindingConfiguration = source.BindingConfiguration;
System\ServiceModel\Configuration\ServiceEndpointElementCollection.cs (1)
41configElementKey.BindingConfiguration,
System\ServiceModel\Configuration\ServicesSection.cs (2)
69if (string.IsNullOrEmpty(endpoint.Binding) && !string.IsNullOrEmpty(endpoint.BindingConfiguration)) 74BindingsSection.ValidateBindingReference(endpoint.Binding, endpoint.BindingConfiguration, context, endpoint);
System\ServiceModel\Description\ConfigLoader.cs (4)
477string bindingKey = endpointElement.Binding + ":" + endpointElement.BindingConfiguration; 480binding = ConfigLoader.LookupBinding(endpointElement.Binding, endpointElement.BindingConfiguration, ConfigurationHelpers.GetEvaluationContext(serviceElement)); 921string bindingKey = serviceEndpointElementCopy.Binding + ":" + serviceEndpointElementCopy.BindingConfiguration; 924binding = ConfigLoader.LookupBinding(serviceEndpointElementCopy.Binding, serviceEndpointElementCopy.BindingConfiguration, context);
System\ServiceModel\Diagnostics\ServiceConfigurationTraceRecord.cs (1)
60this.WriteElementString("BindingConfiguration", serviceEndpoint.BindingConfiguration, xml);