9 overrides of CreateBindingElements
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (1)
115public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsBinding.cs (1)
71public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CustomBinding.cs (1)
119public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (1)
124public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpsBinding.cs (1)
82public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\NetNamedPipeBinding.cs (1)
170public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (1)
295public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\UdpBinding.cs (1)
146public override BindingElementCollection CreateBindingElements()
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (1)
253public override BindingElementCollection CreateBindingElements()
19 references to CreateBindingElements
dotnet-svcutil-lib (19)
CodeDomFixup\EndpointSelector.cs (1)
121BindingElementCollection bindingElements = binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (1)
219BindingElementCollection elements = this.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CustomBinding.cs (1)
84return binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageEncodingBindingElementImporter.cs (1)
148BindingElementCollection elements = binding is CustomBinding ? ((CustomBinding)binding).Elements : binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (2)
145binding.CreateBindingElements().Find<TransportBindingElement>().ManualAddressing) 167binding.CreateBindingElements().Find<TransportBindingElement>().ManualAddressing)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (1)
68BindingElementCollection elements = binding is CustomBinding ? ((CustomBinding)binding).Elements : binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (1)
75BindingElementCollection bindingElements = context.Endpoint.Binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ClientCredentials.cs (1)
175if (serviceEndpoint.Binding.CreateBindingElements().Find<SecurityBindingElement>() == null)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (2)
305TransportBindingElement transport = binding.CreateBindingElements().Find<TransportBindingElement>(); 360BindingElementCollection elements = endpoint.Binding.CreateBindingElements();
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)
56foreach (IPolicyExportExtension exporter in endpoint.Binding.CreateBindingElements().FindAll<IPolicyExportExtension>()) 89_bindingElements = endpoint.Binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlEndpointConversionContext.cs (1)
67foreach (IWsdlExportExtension extension in _endpoint.Binding.CreateBindingElements().FindAll<IWsdlExportExtension>())
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
557BindingElementCollection bindingElements = binding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (1)
610BindingElementCollection bindingElements = _issuerBinding.CreateBindingElements();
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (1)
3050SecurityBindingElement sbe = endpoint.Binding.CreateBindingElements().Find<SecurityBindingElement>();