3 instantiations of BindingDictionaryKey
System.ServiceModel (3)
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
System.ServiceModel (4)
System\ServiceModel\Description\WsdlExporter.cs (4)
30
Dictionary<
BindingDictionaryKey
, WsdlEndpointConversionContext> exportedBindings = new Dictionary<
BindingDictionaryKey
, WsdlEndpointConversionContext>();
1241
BindingDictionaryKey
key = obj as
BindingDictionaryKey
;