Home
last modified time | relevance | path

Searched refs:ContextExchangeMechanism (Results 1 – 25 of 34) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DContextBindingElement.cs18 …internal const ContextExchangeMechanism DefaultContextExchangeMechanism = ContextExchangeMechanism
21 ContextExchangeMechanism contextExchangeMechanism;
54 this.ContextExchangeMechanism = contextExchangeMechanism; in ContextBindingElement()
63 this.ContextExchangeMechanism = other.ContextExchangeMechanism; in ContextBindingElement()
76 public ContextExchangeMechanism ContextExchangeMechanism property in System.ServiceModel.Channels.ContextBindingElement
154 return new ContextChannelListener<TChannel>(context, this.ContextExchangeMechanism); in BuildChannelListener()
168 …Channel) == typeof(IDuplexSessionChannel) && this.ContextExchangeMechanism != ContextExchangeMecha… in CanBuildChannelFactory()
183 …Channel) == typeof(IDuplexSessionChannel) && this.ContextExchangeMechanism != ContextExchangeMecha… in CanBuildChannelListener()
266 if (this.ContextExchangeMechanism != other.ContextExchangeMechanism) in IsMatch()
329 && this.contextExchangeMechanism == ContextExchangeMechanism.HttpCookie in EnsureContextExchangeMechanismCompatibleWithScheme()
[all …]
H A DClientContextProtocol.cs25 …public ClientContextProtocol(ContextExchangeMechanism contextExchangeMechanism, Uri uri, IChannel … in ClientContextProtocol()
28 if (contextExchangeMechanism == ContextExchangeMechanism.HttpCookie) in ClientContextProtocol()
87 if (this.ContextExchangeMechanism == ContextExchangeMechanism.HttpCookie) in OnIncomingMessage()
134 if (this.ContextExchangeMechanism == ContextExchangeMechanism.ContextSoapHeader) in OnOutgoingMessage()
146 else if (this.ContextExchangeMechanism == ContextExchangeMechanism.HttpCookie) in OnOutgoingMessage()
172 if (this.ContextExchangeMechanism != ContextExchangeMechanism.ContextSoapHeader) in OnOutgoingMessage()
192 if (this.ContextExchangeMechanism == ContextExchangeMechanism.HttpCookie) in SetContext()
H A DContextExchangeMechanismHelper.cs11 public static bool IsDefined(ContextExchangeMechanism value) in IsDefined()
13 return value == ContextExchangeMechanism.ContextSoapHeader || in IsDefined()
14 value == ContextExchangeMechanism.HttpCookie; in IsDefined()
H A DServiceContextProtocol.cs15 public ServiceContextProtocol(ContextExchangeMechanism contextExchangeMechanism) in ServiceContextProtocol()
28 if (this.ContextExchangeMechanism == ContextExchangeMechanism.HttpCookie) in OnIncomingMessage()
58 if (this.ContextExchangeMechanism == ContextExchangeMechanism.HttpCookie) in OnOutgoingMessage()
H A DContextProtocol.cs20 ContextExchangeMechanism contextExchangeMechanism;
22 protected ContextProtocol(ContextExchangeMechanism contextExchangeMechanism) in ContextProtocol()
31 protected ContextExchangeMechanism ContextExchangeMechanism property in System.ServiceModel.Channels.ContextProtocol
H A DContextChannelFactory.cs16 ContextExchangeMechanism contextExchangeMechanism;
20 …public ContextChannelFactory(BindingContext context, ContextExchangeMechanism contextExchangeMecha… in ContextChannelFactory()
H A DContextReplyChannel.cs13 ContextExchangeMechanism contextExchangeMechanism;
15 …(ChannelManagerBase channelManager, IReplyChannel innerChannel, ContextExchangeMechanism contextEx… in ContextReplyChannel()
H A DContextInputChannelBase.cs13 ContextExchangeMechanism contextExchangeMechanism;
16 …lBase(ChannelManagerBase channelManager, TChannel innerChannel, ContextExchangeMechanism contextEx… in ContextInputChannelBase()
H A DContextChannelListener.cs16 ContextExchangeMechanism contextExchangeMechanism;
19 …public ContextChannelListener(BindingContext context, ContextExchangeMechanism contextExchangeMech… in ContextChannelListener()
H A DContextBindingElementPolicy.cs50 … if (bindingElement.ContextExchangeMechanism == ContextExchangeMechanism.ContextSoapHeader) in ExportRequireContextAssertion()
H A DContextDuplexSessionChannel.cs16ContextExchangeMechanism contextExchangeMechanism, Uri address, Uri callbackAddress, bool contextM… in ContextDuplexSessionChannel()
23 ContextExchangeMechanism contextExchangeMechanism) in ContextDuplexSessionChannel()
H A DContextExchangeMechanism.cs11 public enum ContextExchangeMechanism enum
H A DContextInputChannel.cs13 …(ChannelManagerBase channelManager, IInputChannel innerChannel, ContextExchangeMechanism contextEx… in ContextInputChannel()
H A DContextInputSessionChannel.cs13 …lManagerBase channelManager, IInputSessionChannel innerChannel, ContextExchangeMechanism contextEx… in ContextInputSessionChannel()
H A DContextRequestChannel.cs14ContextExchangeMechanism contextExchangeMechanism, Uri callbackAddress, bool contextManagementEnab… in ContextRequestChannel()
H A DContextRequestSessionChannel.cs14ContextExchangeMechanism contextExchangeMechanism, Uri callbackAddress, bool contextManagementEnab… in ContextRequestSessionChannel()
H A DContextOutputChannel.cs16ContextExchangeMechanism contextExchangeMechanism, Uri callbackAddress, bool contextManagementEnab… in ContextOutputChannel()
H A DContextOutputSessionChannel.cs16ContextExchangeMechanism contextExchangeMechanism, Uri callbackAddress, bool contextManagementEnab… in ContextOutputSessionChannel()
H A DContextReplySessionChannel.cs15 …lManagerBase channelManager, IReplySessionChannel innerChannel, ContextExchangeMechanism contextEx… in ContextReplySessionChannel()
H A DContextRequestChannelBase.cs16ContextExchangeMechanism contextExchangeMechanism, Uri callbackAddress, bool contextManagementEnab… in ContextRequestChannelBase()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/
H A DWSHttpContextBinding.cs111 …nsert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.HttpCooki… in CreateBindingElements()
116 …nsert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSo… in CreateBindingElements()
140 …if (allowCookies && contextBindingElement.ContextExchangeMechanism == ContextExchangeMechanism.Htt… in TryCreate()
141 …|| !allowCookies && contextBindingElement.ContextExchangeMechanism == ContextExchangeMechanism.Con… in TryCreate()
H A DNetTcpContextBinding.cs95 …nsert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSo… in CreateBindingElements()
109 …xtBindingElement != null && contextBindingElement.ContextExchangeMechanism != ContextExchangeMecha… in TryCreate()
H A DBasicHttpContextBinding.cs87 …esult.Insert(0, new ContextBindingElement(ProtectionLevel.None, ContextExchangeMechanism.HttpCooki… in CreateBindingElements()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Configuration/
H A DContextBindingElementExtensionElement.cs47 public ContextExchangeMechanism ContextExchangeMechanism property in System.ServiceModel.Configuration.ContextBindingElementExtensionElement
49 get { return (ContextExchangeMechanism)base[ContextExchangeMechanismName]; }
70 …return new ContextBindingElement(this.ProtectionLevel, this.ContextExchangeMechanism, this.ClientC… in CreateBindingElement()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/
H A DAssemblyInfo.cs15 [assembly: TypeForwardedTo(typeof(System.ServiceModel.Channels.ContextExchangeMechanism))]

12