9 references to ContextBindingElement
System.ServiceModel (9)
System\ServiceModel\BasicHttpContextBinding.cs (1)
87result.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)
70return new ContextBindingElement(this.ProtectionLevel, this.ContextExchangeMechanism, this.ClientCallbackAddress, this.ContextManagementEnabled);
System\ServiceModel\NetTcpContextBinding.cs (1)
95result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSoapHeader, this.ClientCallbackAddress, this.ContextManagementEnabled));
System\ServiceModel\WSHttpContextBinding.cs (2)
111result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.HttpCookie, this.ClientCallbackAddress, this.ContextManagementEnabled)); 116result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSoapHeader, this.ClientCallbackAddress, this.ContextManagementEnabled));