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