Home
last modified time | relevance | path

Searched refs:clientRuntime (Results 1 – 25 of 86) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DServiceChannelFactory.cs21 ClientRuntime clientRuntime; field in System.ServiceModel.Channels.ServiceChannelFactory
29 if (clientRuntime == null) in ServiceChannelFactory()
36 this.clientRuntime = clientRuntime; in ServiceChannelFactory()
46 return this.clientRuntime;
295 this.clientRuntime.LockDownProperties(); in OnOpened()
431 ClientRuntime clientRuntime, Binding binding) in TypedServiceChannelFactory() argument
432 : base(clientRuntime, binding) in TypedServiceChannelFactory()
501 : base(innerChannelFactory, clientRuntime, binding) in ServiceChannelFactoryOverOutput()
520 : base(innerChannelFactory, clientRuntime, binding) in ServiceChannelFactoryOverDuplex()
540 : base(innerChannelFactory, clientRuntime, binding) in ServiceChannelFactoryOverRequest()
[all …]
H A DServiceChannel.cs33 ClientRuntime clientRuntime; field in System.ServiceModel.Channels.ServiceChannel
89 this.clientRuntime = factory.ClientRuntime; in ServiceChannel()
115 this.clientRuntime = endpointDispatcher.DispatchRuntime.CallbackClientRuntime; in ServiceChannel()
201 if (this.clientRuntime != null)
203 return this.clientRuntime.DispatchRuntime;
247 this.clientRuntime = value.DispatchRuntime.CallbackClientRuntime;
364 get { return this.clientRuntime; }
722 this.clientRuntime.ContractName, in TraceClientOperationPrepared()
1062 this.clientRuntime.ContractName, in HandleReply()
1825 values["ContractNamespace"] = this.clientRuntime.ContractNamespace; in TraceChannelOpenStarted()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Discovery/System/ServiceModel/Discovery/
H A DUdpContractFilterBehavior.cs22 public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
24 …if (clientRuntime != null && clientRuntime.CallbackDispatchRuntime != null && clientRuntime.Callba… in ApplyClientBehavior()
26clientRuntime.CallbackDispatchRuntime.UnhandledDispatchOperation.Invoker = new UnhandledActionOper… in ApplyClientBehavior()
H A DDiscoveryViaBehavior.cs47 … void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in IEndpointBehavior.ApplyClientBehavior() argument
49 if (clientRuntime == null) in IEndpointBehavior.ApplyClientBehavior()
54 clientRuntime.Via = Via; in IEndpointBehavior.ApplyClientBehavior()
H A DDiscoveryCallbackBehavior.cs27 … void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in IEndpointBehavior.ApplyClientBehavior() argument
29 … ((IEndpointBehavior)this.innerCallbackBehavior).ApplyClientBehavior(endpoint, clientRuntime); in IEndpointBehavior.ApplyClientBehavior()
H A DDiscoveryEndpointValidator.cs18 … void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in IEndpointBehavior.ApplyClientBehavior() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Discovery/System.ServiceModel.Discovery/
H A DDiscoveryViaUriBehavior.cs52 public void ApplyClientBehavior (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
56 if (clientRuntime == null) in ApplyClientBehavior()
59 clientRuntime.Via = via; in ApplyClientBehavior()
60 clientRuntime.MessageInspectors.Add (new ClientMessageInspector (version)); in ApplyClientBehavior()
H A DDiscoveryEndpointPublisherBehavior.cs52 void IEndpointBehavior.ApplyClientBehavior (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in IEndpointBehavior.ApplyClientBehavior() argument
56 if (clientRuntime == null) in IEndpointBehavior.ApplyClientBehavior()
H A DEndpointDiscoveryBehavior.cs59 void IEndpointBehavior.ApplyClientBehavior (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in IEndpointBehavior.ApplyClientBehavior() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Routing/System/ServiceModel/Routing/
H A DSoapProcessingBehavior.cs43 public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
52 … SoapProcessingInspector inspector = new SoapProcessingInspector(endpoint, clientRuntime); in ApplyClientBehavior()
53 clientRuntime.MessageInspectors.Add(inspector); in ApplyClientBehavior()
54 clientRuntime.CallbackDispatchRuntime.MessageInspectors.Add(inspector); in ApplyClientBehavior()
55 foreach (ClientOperation clientOp in clientRuntime.Operations) in ApplyClientBehavior()
79 public SoapProcessingInspector(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in SoapProcessingInspector() argument
83 this.manualAddressing = clientRuntime.ManualAddressing; in SoapProcessingInspector()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Web/System.ServiceModel.Description/
H A DWebScriptEnablingBehavior.cs75 …ected override void AddClientErrorInspector (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in AddClientErrorInspector() argument
77 base.AddClientErrorInspector (endpoint, clientRuntime); in AddClientErrorInspector()
87 public override void ApplyClientBehavior (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
89 base.ApplyClientBehavior (endpoint, clientRuntime); in ApplyClientBehavior()
H A DWebHttpBehavior.cs81 …tected virtual void AddClientErrorInspector (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in AddClientErrorInspector() argument
93 public virtual void ApplyClientBehavior (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
95 AddClientErrorInspector (endpoint, clientRuntime); in ApplyClientBehavior()
96 foreach (ClientOperation oper in clientRuntime.Operations) { in ApplyClientBehavior()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Security/
H A DNegotiationTokenProvider.cs123 …ClientRuntime clientRuntime = new ClientRuntime("RequestSecurityTokenContract", NamingHelper.Defau… in SetupRstChannelFactory()
124 clientRuntime.ValidateMustUnderstand = false; in SetupRstChannelFactory()
125 …y serviceChannelFactory = ServiceChannelFactory.BuildChannelFactory(channelBuilder, clientRuntime); in SetupRstChannelFactory()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing/
H A DSoapProcessingBehavior.cs74 public void ApplyClientBehavior (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
78 clientRuntime.MessageInspectors.Add (new MessageInspector (this, endpoint)); in ApplyClientBehavior()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Description/
H A DDispatcherBuilder.cs87 …ClientRuntime clientRuntime = new ClientRuntime(contractDescription.Name, contractDescription.Name… in BuildProxyBehavior()
88 clientRuntime.ContractClientType = contractDescription.ContractType; in BuildProxyBehavior()
93 clientRuntime.IdentityVerifier = identityVerifier; in BuildProxyBehavior()
102 DispatcherBuilder.BuildProxyOperation(operation, clientRuntime); in BuildProxyBehavior()
110 DispatcherBuilder.ApplyClientBehavior(serviceEndpoint, clientRuntime); in BuildProxyBehavior()
111 return clientRuntime; in BuildProxyBehavior()
1051 … static void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
1058 behavior.ApplyClientBehavior(contractDescription, serviceEndpoint, clientRuntime); in ApplyClientBehavior()
1061 … BindingInformationEndpointBehavior.Instance.ApplyClientBehavior(serviceEndpoint, clientRuntime); in ApplyClientBehavior()
1066 behavior.ApplyClientBehavior(serviceEndpoint, clientRuntime); in ApplyClientBehavior()
[all …]
H A DIEndpointBehavior.cs16 void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime); in ApplyClientBehavior() argument
H A DIContractBehavior.cs16 …or(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime); in ApplyClientBehavior() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/Test/System.ServiceModel/
H A DClientBase_InteractiveChannelInitializerTest.cs79 …or (ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
81 clientRuntime.InteractiveChannelInitializers.Add (new MyChannelInitializer ()); in ApplyClientBehavior()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Discovery/Test/System.ServiceModel.Discovery/
H A DInspectionBehaviors.cs53 public void ApplyClientBehavior (ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
68 clientRuntime.MessageInspectors.Add (inspector); in ApplyClientBehavior()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Web/System/ServiceModel/Description/
H A DWebScriptEnablingBehavior.cs126 … public override void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
128 base.ApplyClientBehavior(endpoint, clientRuntime); in ApplyClientBehavior()
130 clientRuntime.MessageInspectors.Add(new JsonClientMessageInspector()); in ApplyClientBehavior()
223 …tected override void AddClientErrorInspector(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in AddClientErrorInspector() argument
225 clientRuntime.MessageInspectors.Add(new JsonClientMessageInspector()); in AddClientErrorInspector()
H A DWebHttpBehavior.cs104 … public virtual void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument
110 if (clientRuntime == null) in ApplyClientBehavior()
125 if (clientRuntime.Operations.Contains(od.Name)) in ApplyClientBehavior()
128 ClientOperation cop = clientRuntime.Operations[od.Name]; in ApplyClientBehavior()
136 AddClientErrorInspector(endpoint, clientRuntime); in ApplyClientBehavior()
507 ClientRuntime clientRuntime = new ClientRuntime("name", ""); in GetDefaultClientFormatter()
508 … ClientOperation cop = new ClientOperation(clientRuntime, "dummyClient", "urn:dummy"); in GetDefaultClientFormatter()
527 …otected virtual void AddClientErrorInspector(ServiceEndpoint endpoint, ClientRuntime clientRuntime) in AddClientErrorInspector() argument
531 clientRuntime.MessageInspectors.Add(new WebFaultClientMessageInspector()); in AddClientErrorInspector()
535 clientRuntime.MessageVersionNoneFaultsEnabled = true; in AddClientErrorInspector()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/
H A DCallbackBehaviorAttribute.cs176 …IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime clientRuntime) in IEndpointBehavior.ApplyClientBehavior() argument
183 DispatchRuntime dispatchRuntime = clientRuntime.DispatchRuntime; in IEndpointBehavior.ApplyClientBehavior()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Description/
H A DIEndpointBehavior.cs41 ClientRuntime clientRuntime); in ApplyClientBehavior() argument
H A DIContractBehavior.cs45 ClientRuntime clientRuntime); in ApplyClientBehavior() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Activities/System/ServiceModel/Activities/Description/
H A DWorkflowContractBehaviorAttribute.cs22 …ior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime) in ApplyClientBehavior() argument

1234