9 references to ContextBindingElement
System.ServiceModel (9)
System\ServiceModel\BasicHttpContextBinding.cs (1)
87
result.Insert(0, new
ContextBindingElement
(ProtectionLevel.None, ContextExchangeMechanism.HttpCookie, null, this.ContextManagementEnabled));
System\ServiceModel\Channels\ContextBindingElement.cs (4)
27
:
this
(DefaultProtectionLevel, DefaultContextExchangeMechanism, null, DefaultContextManagementEnabled)
33
:
this
(protectionLevel, DefaultContextExchangeMechanism, null, DefaultContextManagementEnabled)
39
:
this
(protectionLevel, contextExchangeMechanism, null, DefaultContextManagementEnabled)
46
:
this
(protectionLevel, contextExchangeMechanism, clientCallbackAddress, DefaultContextManagementEnabled)
System\ServiceModel\Configuration\ContextBindingElementExtensionElement.cs (1)
70
return new
ContextBindingElement
(this.ProtectionLevel, this.ContextExchangeMechanism, this.ClientCallbackAddress, this.ContextManagementEnabled);
System\ServiceModel\NetTcpContextBinding.cs (1)
95
result.Insert(0, new
ContextBindingElement
(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSoapHeader, this.ClientCallbackAddress, this.ContextManagementEnabled));
System\ServiceModel\WSHttpContextBinding.cs (2)
111
result.Insert(0, new
ContextBindingElement
(this.ContextProtectionLevel, ContextExchangeMechanism.HttpCookie, this.ClientCallbackAddress, this.ContextManagementEnabled));
116
result.Insert(0, new
ContextBindingElement
(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSoapHeader, this.ClientCallbackAddress, this.ContextManagementEnabled));