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