7 instantiations of ContextBindingElement
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElement.cs (1)
142return new ContextBindingElement(this);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElementPolicy.cs (3)
98bindingElement = new ContextBindingElement(ProtectionLevel.EncryptAndSign); 102bindingElement = new ContextBindingElement(ProtectionLevel.Sign); 106bindingElement = new ContextBindingElement(ProtectionLevel.None);
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpContextBinding.cs (1)
74result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSoapHeader, this.ClientCallbackAddress, this.ContextManagementEnabled));
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpContextBinding.cs (2)
98result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.HttpCookie, this.ClientCallbackAddress, this.ContextManagementEnabled)); 103result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSoapHeader, this.ClientCallbackAddress, this.ContextManagementEnabled));
16 references to ContextBindingElement
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElement.cs (3)
57private ContextBindingElement(ContextBindingElement other) 167ContextBindingElement other = b as ContextBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElementImporter.cs (1)
128ContextBindingElement contextBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElementPolicy.cs (1)
80public static bool TryImportRequireContextAssertion(PolicyAssertionCollection assertions, out ContextBindingElement bindingElement)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpContextBinding.cs (4)
16private bool _contextManagementEnabled = ContextBindingElement.DefaultContextManagementEnabled; 17private ProtectionLevel _contextProtectionLevel = ContextBindingElement.DefaultProtectionLevel; 41[DefaultValue(ContextBindingElement.DefaultContextManagementEnabled)] 54[DefaultValue(ContextBindingElement.DefaultProtectionLevel)]
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpContextBinding.cs (7)
16private ProtectionLevel _contextProtectionLevel = ContextBindingElement.DefaultProtectionLevel; 17private bool _contextManagementEnabled = ContextBindingElement.DefaultContextManagementEnabled; 49[DefaultValue(ContextBindingElement.DefaultContextManagementEnabled)] 62[DefaultValue(ContextBindingElement.DefaultProtectionLevel)] 118ContextBindingElement contextBindingElement = bindingElements.Find<ContextBindingElement>(); 122bindingElementsWithoutContext.Remove<ContextBindingElement>();