2 instantiations of BindingElementCollection
System.ServiceModel.NetNamedPipe (1)
System\ServiceModel\NetNamedPipeBinding.cs (1)
103BindingElementCollection bindingElements = new BindingElementCollection();
System.ServiceModel.UnixDomainSocket (1)
System\ServiceModel\UnixDomainSocketBinding.cs (1)
100BindingElementCollection bindingElements = new BindingElementCollection();
18 references to BindingElementCollection
System.ServiceModel (1)
netstandard.cs (1)
36[assembly: TypeForwardedTo(typeof(BindingElementCollection))]
System.ServiceModel.Federation (5)
System\ServiceModel\Federation\WsFederationHttpBinding.cs (5)
92/// Builds the <see cref="BindingElementCollection"/> for the channnel. 94/// <returns><see cref="BindingElementCollection"/> for the channel.</returns> 95/// <remarks>Adds a <see cref="WSFederationBindingElement"/> in first position to the <see cref="BindingElementCollection"/> returned from base.CreateBindingElements().</remarks> 96public override BindingElementCollection CreateBindingElements() 98var bindingElementCollection = base.CreateBindingElements();
System.ServiceModel.Http.Tests (3)
ServiceModel\BasicHttpBindingTest.cs (2)
327var be = binding.CreateBindingElements(); 338var be = binding.CreateBindingElements();
ServiceModel\SecurityBindingElementTest.cs (1)
22var bindingElements = binding.CreateBindingElements();
System.ServiceModel.NetNamedPipe (2)
System\ServiceModel\NetNamedPipeBinding.cs (2)
101public override BindingElementCollection CreateBindingElements() 103BindingElementCollection bindingElements = new BindingElementCollection();
System.ServiceModel.Primitives (5)
netstandard.cs (5)
1251public abstract System.ServiceModel.Channels.BindingElementCollection CreateBindingElements(); 1259public System.ServiceModel.Channels.BindingElementCollection RemainingBindingElements { get { return default; } } 1280public System.ServiceModel.Channels.BindingElementCollection Clone() { return default; } 1427public System.ServiceModel.Channels.BindingElementCollection Elements { get { return default; } } 1429public override System.ServiceModel.Channels.BindingElementCollection CreateBindingElements() { return default; }
System.ServiceModel.UnixDomainSocket (2)
System\ServiceModel\UnixDomainSocketBinding.cs (2)
97public override BindingElementCollection CreateBindingElements() 100BindingElementCollection bindingElements = new BindingElementCollection();