15 references to HttpCookie
System.ServiceModel (15)
System\ServiceModel\BasicHttpContextBinding.cs (1)
87
result.Insert(0, new ContextBindingElement(ProtectionLevel.None, ContextExchangeMechanism.
HttpCookie
, null, this.ContextManagementEnabled));
System\ServiceModel\Channels\ClientContextProtocol.cs (4)
28
if (contextExchangeMechanism == ContextExchangeMechanism.
HttpCookie
)
87
if (this.ContextExchangeMechanism == ContextExchangeMechanism.
HttpCookie
)
146
else if (this.ContextExchangeMechanism == ContextExchangeMechanism.
HttpCookie
)
192
if (this.ContextExchangeMechanism == ContextExchangeMechanism.
HttpCookie
)
System\ServiceModel\Channels\ContextBindingElement.cs (4)
168
|| (typeof(TChannel) == typeof(IDuplexSessionChannel) && this.ContextExchangeMechanism != ContextExchangeMechanism.
HttpCookie
))
183
|| (typeof(TChannel) == typeof(IDuplexSessionChannel) && this.ContextExchangeMechanism != ContextExchangeMechanism.
HttpCookie
))
329
&& this.contextExchangeMechanism == ContextExchangeMechanism.
HttpCookie
343
if (context.Binding != null && this.contextExchangeMechanism == ContextExchangeMechanism.
HttpCookie
)
System\ServiceModel\Channels\ContextExchangeMechanismHelper.cs (1)
14
value == ContextExchangeMechanism.
HttpCookie
;
System\ServiceModel\Channels\ServiceContextProtocol.cs (2)
28
if (this.ContextExchangeMechanism == ContextExchangeMechanism.
HttpCookie
)
58
if (this.ContextExchangeMechanism == ContextExchangeMechanism.
HttpCookie
)
System\ServiceModel\NetTcpContextBinding.cs (1)
109
if (contextBindingElement != null && contextBindingElement.ContextExchangeMechanism != ContextExchangeMechanism.
HttpCookie
)
System\ServiceModel\WSHttpContextBinding.cs (2)
111
result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.
HttpCookie
, this.ClientCallbackAddress, this.ContextManagementEnabled));
140
if (allowCookies && contextBindingElement.ContextExchangeMechanism == ContextExchangeMechanism.
HttpCookie