20 references to SupportedAddressingMode
System.ServiceModel (20)
System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (2)
187
exporter.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)
50
else if (WsdlImporter.WSAddressingHelper.DetermineSupportedAddressingMode(importer, context) ==
SupportedAddressingMode
.NonAnonymous)
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);
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)
System\ServiceModel\Description\WsdlImporter.cs (5)
1130
internal static
SupportedAddressingMode
DetermineSupportedAddressingMode(MetadataImporter importer, PolicyConversionContext context)
1155
return
SupportedAddressingMode
.Anonymous;
1167
return
SupportedAddressingMode
.NonAnonymous;
1171
return
SupportedAddressingMode
.Anonymous;
1178
return
SupportedAddressingMode
.Anonymous;