26 references to State
System.ServiceModel (26)
System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
187
exporter.
State
[typeof(SupportedAddressingMode).Name] = SupportedAddressingMode.NonAnonymous;
System\ServiceModel\Channels\SecurityBindingElement.cs (4)
2057
exporter.
State
[SecurityPolicyStrings.SecureConversationBootstrapBindingElementsBelowSecurityKey] = bindingElementsBelowSecurity;
2081
exporter.
State
.Remove(SecurityPolicyStrings.SecureConversationBootstrapBindingElementsBelowSecurityKey);
2131
exporter.
State
[SecurityPolicyStrings.SecureConversationBootstrapBindingElementsBelowSecurityKey] = bindingElementsBelowSecurity;
2172
exporter.
State
.Remove(SecurityPolicyStrings.SecureConversationBootstrapBindingElementsBelowSecurityKey);
System\ServiceModel\Description\MessageContractExporter.cs (13)
77
if (!exporter.
State
.TryGetValue(typeof(MessageExportContext), out messageExportContext))
80
exporter.
State
[typeof(MessageExportContext)] = messageExportContext;
247
if (!exporter.
State
.TryGetValue(typeof(XsdDataContractExporter), out dataContractExporter))
250
exporter.
State
.Add(typeof(XsdDataContractExporter), dataContractExporter);
657
this.exportedMessages = (MessageExportContext)exporter.
State
[typeof(MessageExportContext)];
1247
if (!exporter.
State
.TryGetValue(typeof(XmlSerializerOperationBehavior.Reflector), out reflector))
1250
exporter.
State
.Add(typeof(XmlSerializerOperationBehavior.Reflector), reflector);
1261
if (!exporter.
State
.TryGetValue(typeof(SoapSchemaExporter), out soapExporter))
1264
exporter.
State
.Add(typeof(SoapSchemaExporter), soapExporter);
1275
if (!exporter.
State
.TryGetValue(typeof(XmlSchemaExporter), out xmlExporter))
1278
exporter.
State
.Add(typeof(XmlSchemaExporter), xmlExporter);
1289
if (!exporter.
State
.TryGetValue(typeof(XmlSchemas), out schemas))
1295
exporter.
State
.Add(typeof(XmlSchemas), schemas);
System\ServiceModel\Description\SoapHelper.cs (3)
163
if (!exporter.
State
.TryGetValue(SoapVersionStateKey, out versions))
166
exporter.
State
[SoapVersionStateKey] = versions;
176
if (exporter.
State
.TryGetValue(SoapVersionStateKey, out versions))
System\ServiceModel\Description\WsdlExporter.cs (3)
660
if (exporter.
State
.ContainsKey(key) && exporter.
State
[key] is SupportedAddressingMode)
662
mode = (SupportedAddressingMode)exporter.
State
[key];
System\ServiceModel\Security\WSSecurityPolicy.cs (2)
2643
if (exporter.
State
.ContainsKey(SecurityPolicyStrings.SecureConversationBootstrapBindingElementsBelowSecurityKey))
2645
BindingElementCollection bindingElementsBelowSecurity = exporter.
State
[SecurityPolicyStrings.SecureConversationBootstrapBindingElementsBelowSecurityKey] as BindingElementCollection;