3 instantiations of BindingDictionaryKey
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (3)
219
_exportedBindings.Add(new
BindingDictionaryKey
(endpoint.Contract, endpoint.Binding), endpointContext);
223
endpointContext = new WsdlEndpointConversionContext(_exportedBindings[new
BindingDictionaryKey
(endpoint.Contract, endpoint.Binding)], endpoint, wsdlPort);
316
if (!_exportedBindings.TryGetValue(new
BindingDictionaryKey
(endpoint.Contract, endpoint.Binding), out bindingConversionContext))
4 references to BindingDictionaryKey
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (4)
30
private Dictionary<
BindingDictionaryKey
, WsdlEndpointConversionContext> _exportedBindings = new Dictionary<
BindingDictionaryKey
, WsdlEndpointConversionContext>();
1239
BindingDictionaryKey
key = obj as
BindingDictionaryKey
;