4 instantiations of ClientRuntime
System.ServiceModel (4)
System\ServiceModel\Description\DispatcherBuilder.cs (1)
87ClientRuntime clientRuntime = new ClientRuntime(contractDescription.Name, contractDescription.Namespace);
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
345this.proxyRuntime = new ClientRuntime(this, this.shared);
System\ServiceModel\Security\NegotiationTokenProvider.cs (1)
123ClientRuntime clientRuntime = new ClientRuntime("RequestSecurityTokenContract", NamingHelper.DefaultNamespace);
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
420ClientRuntime clientRuntime = new ClientRuntime("RequestSecuritySession", NamingHelper.DefaultNamespace);
91 references to ClientRuntime
System.ServiceModel (68)
System\ServiceModel\CallbackBehaviorAttribute.cs (1)
176void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime clientRuntime)
System\ServiceModel\Channels\PeerHelpers.cs (1)
909void IContractBehavior.ApplyClientBehavior(ContractDescription description, ServiceEndpoint endpoint, ClientRuntime proxy)
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
1695public void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Channels\PeerSecurityManager.cs (1)
780void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Channels\ServiceChannel.cs (2)
33ClientRuntime clientRuntime; 362internal ClientRuntime ClientRuntime
System\ServiceModel\Channels\ServiceChannelFactory.cs (12)
21ClientRuntime clientRuntime; 26public ServiceChannelFactory(ClientRuntime clientRuntime, Binding binding) 41public ClientRuntime ClientRuntime 85public static ServiceChannelFactory BuildChannelFactory(ChannelBuilder channelBuilder, ClientRuntime clientRuntime) 122ClientRuntime clientRuntime = DispatcherBuilder.BuildProxyBehavior(serviceEndpoint, out parameters); 431ClientRuntime clientRuntime, Binding binding) 500public ServiceChannelFactoryOverOutput(IChannelFactory<IOutputChannel> innerChannelFactory, ClientRuntime clientRuntime, Binding binding) 519public ServiceChannelFactoryOverDuplex(IChannelFactory<IDuplexChannel> innerChannelFactory, ClientRuntime clientRuntime, Binding binding) 539public ServiceChannelFactoryOverRequest(IChannelFactory<IRequestChannel> innerChannelFactory, ClientRuntime clientRuntime, Binding binding) 559public ServiceChannelFactoryOverOutputSession(IChannelFactory<IOutputSessionChannel> innerChannelFactory, ClientRuntime clientRuntime, Binding binding, bool datagramAdapter) 596public ServiceChannelFactoryOverDuplexSession(IChannelFactory<IDuplexSessionChannel> innerChannelFactory, ClientRuntime clientRuntime, Binding binding, bool useActiveAutoClose) 622public ServiceChannelFactoryOverRequestSession(IChannelFactory<IRequestSessionChannel> innerChannelFactory, ClientRuntime clientRuntime, Binding binding, bool datagramAdapter)
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
1450public void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\ComIntegration\ComPlusContractBehavior.cs (1)
51ClientRuntime proxy)
System\ServiceModel\DeliveryRequirementsAttribute.cs (1)
77void IContractBehavior.ApplyClientBehavior(ContractDescription description, ServiceEndpoint endpoint, ClientRuntime proxy)
System\ServiceModel\Description\CallbackDebugBehavior.cs (1)
39void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Description\CallbackTimeoutsBehavior.cs (1)
51void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Description\ClientCredentials.cs (2)
291void AddInteractiveInitializers(ServiceEndpoint serviceEndpoint, ClientRuntime behavior) 303public virtual void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Description\ClientUriBehavior.cs (1)
50void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Description\DispatcherBuilder.cs (8)
79internal static ClientRuntime BuildProxyBehavior(ServiceEndpoint serviceEndpoint, out BindingParameterCollection parameters) 87ClientRuntime clientRuntime = new ClientRuntime(contractDescription.Name, contractDescription.Namespace); 971static void BuildProxyOperation(OperationDescription operation, ClientRuntime parent) 1051static void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime clientRuntime) 1072static void BindOperations(ContractDescription contract, ClientRuntime proxy, DispatchRuntime dispatch) 1207public void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior) 1265public void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior) 1320public void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior) { }
System\ServiceModel\Description\DispatcherSynchronizationBehavior.cs (1)
55void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Description\IContractBehavior.cs (1)
16void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime);
System\ServiceModel\Description\IEndpointBehavior.cs (1)
16void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime);
System\ServiceModel\Description\MustUnderstandBehavior.cs (1)
44void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Description\ServiceMetadataContractBehavior.cs (1)
45void IContractBehavior.ApplyClientBehavior(ContractDescription description, ServiceEndpoint endpoint, ClientRuntime proxy)
System\ServiceModel\Description\SynchronousReceiveBehavior.cs (1)
32void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Description\TransactedBatchingBehavior.cs (1)
70void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
75ClientRuntime clientRuntime = channel.ClientRuntime; 732ClientRuntime clientRuntime = channel.ClientRuntime;
System\ServiceModel\Dispatcher\ClientOperation.cs (4)
45ClientRuntime parent; 54public ClientOperation(ClientRuntime parent, string name, string action) 59public ClientOperation(ClientRuntime parent, string name, string action, string replyAction) 228public ClientRuntime Parent
System\ServiceModel\Dispatcher\ClientRuntime.cs (4)
490ClientRuntime outer; 492internal ProxyBehaviorCollection(ClientRuntime outer) 535ClientRuntime outer; 537internal OperationCollection(ClientRuntime outer)
System\ServiceModel\Dispatcher\DataContractSerializerServiceBehavior.cs (1)
57void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime clientRuntime)
System\ServiceModel\Dispatcher\DispatchRuntime.cs (4)
43ClientRuntime proxyRuntime; 75internal DispatchRuntime(ClientRuntime proxyRuntime, SharedRuntimeState shared) 335public ClientRuntime CallbackClientRuntime 698internal ClientRuntime ClientRuntime
System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
32internal ImmutableClientRuntime(ClientRuntime behavior)
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (1)
30void IContractBehavior.ApplyClientBehavior(ContractDescription description, ServiceEndpoint endpoint, ClientRuntime proxy)
System\ServiceModel\Dispatcher\PartialTrustValidationBehavior.cs (1)
55void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) { }
System\ServiceModel\Dispatcher\PeerValidationBehavior.cs (1)
62void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (1)
130void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Dispatcher\TransactionValidationBehavior.cs (1)
109void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\MsmqIntegration\MsmqIntegrationValidationBehavior.cs (1)
50void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Security\InfoCardHelper.cs (1)
683public override void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Security\NegotiationTokenProvider.cs (1)
123ClientRuntime clientRuntime = new ClientRuntime("RequestSecurityTokenContract", NamingHelper.DefaultNamespace);
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
420ClientRuntime clientRuntime = new ClientRuntime("RequestSecuritySession", NamingHelper.DefaultNamespace);
System\ServiceModel\Security\WSTrustFeb2005.cs (1)
282public void ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
System\ServiceModel\Security\WSTrustServiceContract.cs (1)
1610public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.ClientRuntime clientRuntime)
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedAspNetEnvironment.cs (1)
611void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, Dispatcher.ClientRuntime clientRuntime)
System.ServiceModel.Activities (4)
System\ServiceModel\Activities\ClientOperationFormatterProvider.cs (1)
19static ClientRuntime DummyClientRuntime
System\ServiceModel\Activities\Description\CorrelationQueryBehavior.cs (1)
99public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Activities\Description\WorkflowContractBehaviorAttribute.cs (1)
22public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Activities\WorkflowHostingEndpoint.cs (1)
98public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System.ServiceModel.Discovery (8)
System\ServiceModel\Discovery\DiscoveryCallbackBehavior.cs (1)
27void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Discovery\DiscoveryEndpointValidator.cs (1)
18void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Discovery\DiscoveryOperationContextExtensionInitializer.cs (1)
23void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.ClientRuntime clientRuntime)
System\ServiceModel\Discovery\DiscoveryViaBehavior.cs (1)
47void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Discovery\EndpointDiscoveryBehavior.cs (1)
110void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Discovery\ServiceDiscoveryBehavior.cs (1)
174void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Discovery\UdpContractFilterBehavior.cs (1)
22public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Discovery\UdpReplyToBehavior.cs (1)
55void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System.ServiceModel.Routing (3)
System\ServiceModel\Routing\RoutingBehavior.cs (1)
169public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Routing\SoapProcessingBehavior.cs (2)
43public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) 79public SoapProcessingInspector(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System.ServiceModel.Web (6)
System\ServiceModel\Description\WebHttpBehavior.cs (3)
104public virtual void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) 507ClientRuntime clientRuntime = new ClientRuntime("name", ""); 527protected virtual void AddClientErrorInspector(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (2)
126public override void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) 223protected override void AddClientErrorInspector(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
System\ServiceModel\Web\JavascriptCallbackBehaviorAttribute.cs (1)
44public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.ClientRuntime clientRuntime)
System.WorkflowServices (1)
System\ServiceModel\Activities\Description\WorkflowRuntimeServicesBehavior.cs (1)
66public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)