14 instantiations of BindingElementCollection
dotnet-svcutil-lib (14)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (1)
120BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsBinding.cs (1)
76BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BindingContext.cs (1)
43_remainingBindingElements = new BindingElementCollection(remainingBindingElements);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BindingElementCollection.cs (1)
42BindingElementCollection result = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CustomBinding.cs (1)
11private BindingElementCollection _bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ImportedPolicyConversionContext.cs (1)
30private BindingElementCollection _bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataImporter.cs (1)
148private readonly BindingElementCollection _bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (1)
129BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpsBinding.cs (1)
87BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetNamedPipeBinding.cs (1)
172BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (1)
300BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\UdpBinding.cs (1)
148BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (1)
255BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpContextBinding.cs (1)
121BindingElementCollection bindingElementsWithoutContext = new BindingElementCollection(bindingElements);
81 references to BindingElementCollection
dotnet-svcutil-lib (81)
CodeDomFixup\EndpointSelector.cs (1)
121BindingElementCollection bindingElements = binding.CreateBindingElements();
CodeDomFixup\System.ServiceModel.FederationCodeGen.cs (1)
42public override System.ServiceModel.Channels.BindingElementCollection CreateBindingElements() => default;
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (3)
115public override BindingElementCollection CreateBindingElements() 120BindingElementCollection bindingElements = new BindingElementCollection(); 146internal static bool TryCreate(BindingElementCollection elements, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsBinding.cs (2)
71public override BindingElementCollection CreateBindingElements() 76BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (2)
203public abstract BindingElementCollection CreateBindingElements(); 219BindingElementCollection elements = this.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BindingContext.cs (4)
18private BindingElementCollection _remainingBindingElements; // kept to ensure each BE builds itself once 31BindingElementCollection remainingBindingElements, 38BindingElementCollection remainingBindingElements, 75public BindingElementCollection RemainingBindingElements
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BindingElementCollection.cs (2)
40public BindingElementCollection Clone() 42BindingElementCollection result = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionOrientedTransportBindingElement.cs (1)
214private MessageEncodingBindingElement FindMessageEncodingBindingElement(BindingElementCollection bindingElements, out bool createdNew)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElementImporter.cs (1)
80BindingElementCollection bindingElements = customBinding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CustomBinding.cs (6)
11private BindingElementCollection _bindingElements = new BindingElementCollection(); 59internal CustomBinding(BindingElementCollection bindingElements) 78private static BindingElementCollection SafeCreateBindingElements(Binding binding) 87internal CustomBinding(Binding binding, BindingElementCollection elements) 111public BindingElementCollection Elements 119public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (1)
608private MessageEncodingBindingElement FindMessageEncodingBindingElement(BindingElementCollection bindingElements, out bool createdNew)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageEncodingBindingElementImporter.cs (3)
33BindingElementCollection bindingElements = GetBindingElements(context); 145private static BindingElementCollection GetBindingElements(WsdlEndpointConversionContext context) 148BindingElementCollection elements = binding is CustomBinding ? ((CustomBinding)binding).Elements : binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElement.cs (3)
324BindingElementCollection bindingElements = context.BindingElements; 345private XmlElement CreateReliabilityAssertion(PolicyVersion policyVersion, BindingElementCollection bindingElements) 419private static bool IsSecureConversationEnabled(BindingElementCollection bindingElements)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (2)
1454internal static ChannelProtectionRequirements ComputeProtectionRequirements(SecurityBindingElement security, BindingParameterCollection parameterCollection, BindingElementCollection bindingElements, bool isForService) 1480private static void AddBindingProtectionRequirements(ChannelProtectionRequirements requirements, BindingElementCollection bindingElements, bool isForChannel)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\StandardBindingImporter.cs (1)
31BindingElementCollection elements = ((CustomBinding)endpointContext.Endpoint.Binding).Elements;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (3)
65private static BindingElementCollection GetBindingElements(WsdlEndpointConversionContext context) 68BindingElementCollection elements = binding is CustomBinding ? ((CustomBinding)binding).Elements : binding.CreateBindingElements(); 93BindingElementCollection elements = ConvertToCustomBinding(context).Elements;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (1)
75BindingElementCollection bindingElements = context.Endpoint.Binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (1)
360BindingElementCollection elements = endpoint.Binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ImportedPolicyConversionContext.cs (2)
30private BindingElementCollection _bindingElements = new BindingElementCollection(); 88public override BindingElementCollection BindingElements { get { return _bindingElements; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (2)
171BindingElementCollection bindingElementCollection = _factory.Endpoint.Binding.CreateBindingElements(); 412BindingElementCollection bindingElementCollection = mexBinding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExporter.cs (2)
79private readonly BindingElementCollection _bindingElements; 97public override BindingElementCollection BindingElements
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataImporter.cs (3)
78internal BindingElementCollection ImportPolicy(ServiceEndpoint endpoint, Collection<Collection<XmlElement>> policyAlternatives) 148private readonly BindingElementCollection _bindingElements = new BindingElementCollection(); 157public override BindingElementCollection BindingElements { get { return _bindingElements; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\PolicyConversionContext.cs (1)
24public abstract BindingElementCollection BindingElements { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
557BindingElementCollection bindingElements = binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (2)
556BindingElementCollection bindingElements = ImportPolicyFromWsdl(endpointContext); 1580private BindingElementCollection ImportPolicyFromWsdl(WsdlEndpointConversionContext endpointContext)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (3)
124public override BindingElementCollection CreateBindingElements() 129BindingElementCollection bindingElements = new BindingElementCollection(); 169internal static bool TryCreate(BindingElementCollection elements, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpsBinding.cs (2)
82public override BindingElementCollection CreateBindingElements() 87BindingElementCollection bindingElements = new BindingElementCollection();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetNamedPipeBinding.cs (3)
170public override BindingElementCollection CreateBindingElements() 172BindingElementCollection bindingElements = new BindingElementCollection(); 190internal static bool TryCreate(BindingElementCollection elements, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (3)
295public override BindingElementCollection CreateBindingElements() 300BindingElementCollection bindingElements = new BindingElementCollection(); 325internal static bool TryCreate(BindingElementCollection elements, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpContextBinding.cs (2)
71public override BindingElementCollection CreateBindingElements() 73BindingElementCollection result = base.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (1)
610BindingElementCollection bindingElements = _issuerBinding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (3)
2645BindingElementCollection bindingElementsBelowSecurity = exporter.State[SecurityPolicyStrings.SecureConversationBootstrapBindingElementsBelowSecurityKey] as BindingElementCollection; 2724BindingElementCollection bindingElements;
FrameworkFork\System.ServiceModel\System\ServiceModel\UdpBinding.cs (3)
146public override BindingElementCollection CreateBindingElements() 148BindingElementCollection bindingElements = new BindingElementCollection(); 188internal static bool TryCreate(BindingElementCollection bindingElements, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSFederationHttpBinding.cs (2)
189public override BindingElementCollection CreateBindingElements() 191BindingElementCollection bindingElements = base.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (1)
90public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (3)
253public override BindingElementCollection CreateBindingElements() 255BindingElementCollection bindingElements = new BindingElementCollection(); 286internal static bool TryCreate(BindingElementCollection elements, out Binding binding)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpContextBinding.cs (4)
79public override BindingElementCollection CreateBindingElements() 81BindingElementCollection result; 109internal static new bool TryCreate(BindingElementCollection bindingElements, out Binding binding) 121BindingElementCollection bindingElementsWithoutContext = new BindingElementCollection(bindingElements);