20 references to SupportedAddressingMode
System.ServiceModel (20)
System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (2)
187exporter.State[typeof(SupportedAddressingMode).Name] = SupportedAddressingMode.NonAnonymous;
System\ServiceModel\Channels\CompositeDuplexBindingElementImporter.cs (1)
33|| WsdlImporter.WSAddressingHelper.DetermineSupportedAddressingMode(importer, context) == SupportedAddressingMode.NonAnonymous)
System\ServiceModel\Channels\OneWayBindingElementImporter.cs (1)
50else if (WsdlImporter.WSAddressingHelper.DetermineSupportedAddressingMode(importer, context) == SupportedAddressingMode.NonAnonymous)
System\ServiceModel\Channels\SupportedAddressingMode.cs (4)
16internal static bool IsDefined(SupportedAddressingMode value) 18return (value == SupportedAddressingMode.Anonymous || 19value == SupportedAddressingMode.NonAnonymous || 20value == SupportedAddressingMode.Mixed);
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)
System\ServiceModel\Description\WsdlImporter.cs (5)
1130internal static SupportedAddressingMode DetermineSupportedAddressingMode(MetadataImporter importer, PolicyConversionContext context) 1155return SupportedAddressingMode.Anonymous; 1167return SupportedAddressingMode.NonAnonymous; 1171return SupportedAddressingMode.Anonymous; 1178return SupportedAddressingMode.Anonymous;