18 references to SupportedAddressingMode
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CompositeDuplexBindingElementImporter.cs (1)
33|| WsdlImporter.WSAddressingHelper.DetermineSupportedAddressingMode(importer, context) == SupportedAddressingMode.NonAnonymous)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OneWayBindingElementImporter.cs (1)
50else if (WsdlImporter.WSAddressingHelper.DetermineSupportedAddressingMode(importer, context) == SupportedAddressingMode.NonAnonymous)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SupportedAddressingMode.cs (4)
16internal static bool IsDefined(SupportedAddressingMode value) 18return (value == SupportedAddressingMode.Anonymous || 19value == SupportedAddressingMode.NonAnonymous || 20value == SupportedAddressingMode.Mixed);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (7)
657SupportedAddressingMode mode = SupportedAddressingMode.Anonymous; 658string key = typeof(SupportedAddressingMode).Name; 660if (exporter.State.ContainsKey(key) && exporter.State[key] is SupportedAddressingMode) 662mode = (SupportedAddressingMode)exporter.State[key]; 667if (mode != SupportedAddressingMode.Mixed) 670if (mode == SupportedAddressingMode.Anonymous)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (5)
1124internal static SupportedAddressingMode DetermineSupportedAddressingMode(MetadataImporter importer, PolicyConversionContext context) 1149return SupportedAddressingMode.Anonymous; 1161return SupportedAddressingMode.NonAnonymous; 1165return SupportedAddressingMode.Anonymous; 1172return SupportedAddressingMode.Anonymous;