2 types derived from BindingCollectionElement
System.ServiceModel (2)
System\ServiceModel\Configuration\CustomBindingCollectionElement.cs (1)
15public sealed partial class CustomBindingCollectionElement : BindingCollectionElement
System\ServiceModel\Configuration\StandardBindingCollectionElement.cs (1)
13public partial class StandardBindingCollectionElement<TStandardBinding, TBindingConfiguration> : BindingCollectionElement
25 references to BindingCollectionElement
System.Activities.Core.Presentation (2)
System\ServiceModel\Activities\Presentation\BindingEditor.xaml.cs (2)
51.Select<BindingCollectionElement, BindingDescriptor>(p => new BindingDescriptor() { BindingName = p.BindingName, Value = p })); 146public BindingCollectionElement Value
System.ServiceModel (23)
System\ServiceModel\Configuration\BindingsSection.cs (10)
24Dictionary<string, BindingCollectionElement> BindingCollectionElements 28Dictionary<string, BindingCollectionElement> bindingCollectionElements = new Dictionary<string, BindingCollectionElement>(); 39new public BindingCollectionElement this[string binding] 43return (BindingCollectionElement)base[binding]; 169public List<BindingCollectionElement> BindingCollections 173List<BindingCollectionElement> bindingCollections = new List<BindingCollectionElement>(); 223BindingCollectionElement bindingCollectionElement = sectionGroup.BindingCollectionElements[sectionName]; 318BindingCollectionElement bindingCollectionElement = null;
System\ServiceModel\Configuration\ConfigurationHelpers.cs (6)
22internal static BindingCollectionElement GetAssociatedBindingCollectionElement(ContextInformation evaluationContext, string bindingCollectionName) 24BindingCollectionElement retVal = null; 54internal static BindingCollectionElement UnsafeGetAssociatedBindingCollectionElement(ContextInformation evaluationContext, string bindingCollectionName) 56BindingCollectionElement retVal = null; 209internal static BindingCollectionElement GetBindingCollectionElement(string bindingCollectionName) 217internal static BindingCollectionElement UnsafeGetBindingCollectionElement(string bindingCollectionName)
System\ServiceModel\Configuration\ExtensionsSection.cs (1)
170else if (extensionType.IsSubclassOf(typeof(BindingCollectionElement)))
System\ServiceModel\Description\ConfigLoader.cs (5)
1042static BindingCollectionElement GetBindingCollectionElement(string bindingSectionName, ContextInformation context) 1052return (BindingCollectionElement)ConfigurationHelpers.UnsafeGetBindingCollectionElement(bindingSectionName); 1058return (BindingCollectionElement)ConfigurationHelpers.UnsafeGetAssociatedBindingCollectionElement(context, bindingSectionName); 1069BindingCollectionElement bindingCollectionElement = GetBindingCollectionElement(bindingSectionName, context); 1111static Binding LookupBinding(string bindingSectionName, string configurationName, BindingCollectionElement bindingCollectionElement, Binding defaultBinding)
System\ServiceModel\Description\ConfigWriter.cs (1)
83foreach (BindingCollectionElement bindingCollectionElement in this.bindingsSection.BindingCollections)