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