9 references to ContextSoapHeader
System.ServiceModel (9)
System\ServiceModel\Channels\ClientContextProtocol.cs (2)
134
if (this.ContextExchangeMechanism == ContextExchangeMechanism.
ContextSoapHeader
)
172
if (this.ContextExchangeMechanism != ContextExchangeMechanism.
ContextSoapHeader
)
System\ServiceModel\Channels\ContextBindingElement.cs (1)
18
internal const ContextExchangeMechanism DefaultContextExchangeMechanism = ContextExchangeMechanism.
ContextSoapHeader
;
System\ServiceModel\Channels\ContextBindingElementPolicy.cs (1)
50
if (bindingElement.ContextExchangeMechanism == ContextExchangeMechanism.
ContextSoapHeader
)
System\ServiceModel\Channels\ContextExchangeMechanismHelper.cs (1)
13
return value == ContextExchangeMechanism.
ContextSoapHeader
||
System\ServiceModel\Configuration\Properties.cs (1)
143
properties.Add(new ConfigurationProperty("contextExchangeMechanism", typeof(System.ServiceModel.Channels.ContextExchangeMechanism), System.ServiceModel.Channels.ContextExchangeMechanism.
ContextSoapHeader
, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Channels.ContextExchangeMechanismHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\NetTcpContextBinding.cs (1)
95
result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.
ContextSoapHeader
, this.ClientCallbackAddress, this.ContextManagementEnabled));
System\ServiceModel\WSHttpContextBinding.cs (2)
116
result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.
ContextSoapHeader
, this.ClientCallbackAddress, this.ContextManagementEnabled));
141
|| !allowCookies && contextBindingElement.ContextExchangeMechanism == ContextExchangeMechanism.
ContextSoapHeader
)