3 writes to ClientRuntime
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\ServiceChannel.cs (3)
71ClientRuntime = factory.ClientRuntime; 92ClientRuntime = endpointDispatcher.DispatchRuntime.CallbackClientRuntime; 216ClientRuntime = value.DispatchRuntime.CallbackClientRuntime;
26 references to ClientRuntime
System.ServiceModel.Primitives (26)
System\ServiceModel\Channels\ServiceChannel.cs (18)
176if (ClientRuntime != null) 178return ClientRuntime.DispatchRuntime; 346get { return ClientRuntime.GetRuntime().UnhandledProxyOperation; } 533DispatchRuntime dispatchBehavior = ClientRuntime.DispatchRuntime; 560if (!oneway && !ClientRuntime.ManualAddressing && rpc.Request.Version.Addressing != AddressingVersion.None) 660ClientRuntime.ContractName, 906DispatchRuntime dispatchBehavior = ClientRuntime.DispatchRuntime; 944if (operation.DeserializeReply && ClientRuntime.IsFault(ref rpc.Reply)) 946MessageFault fault = MessageFault.CreateFault(rpc.Reply, ClientRuntime.MaxFaultSize); 1000ClientRuntime.ContractName, 1116if (!_didInteractiveInitialization && (ClientRuntime.InteractiveChannelInitializers.Count > 0)) 1118IInteractiveChannelInitializer example = ClientRuntime.InteractiveChannelInitializers[0]; 1135if (ClientRuntime.InteractiveChannelInitializers.Count > 0) 1137IInteractiveChannelInitializer example = ClientRuntime.InteractiveChannelInitializers[0]; 1163DispatchRuntime dispatchRuntime = ClientRuntime.DispatchRuntime; 1581ClientRuntime.GetRuntime().DisplayInitializationUI(this); 1594return ClientRuntime.GetRuntime().BeginDisplayInitializationUI(this, callback, state); 1599ClientRuntime.GetRuntime().EndDisplayInitializationUI(result);
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
353serviceChannel.ClientRuntime.GetRuntime().InitializeChannel(clientChannel);
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
40channelProxy._proxyRuntime = serviceChannel.ClientRuntime.GetRuntime();
System\ServiceModel\ClientBase.cs (1)
933_runtime = _channel.ClientRuntime.GetRuntime();
System\ServiceModel\Dispatcher\ChannelHandler.cs (5)
52ClientRuntime clientRuntime = channel.ClientRuntime; 470ClientRuntime clientRuntime = channel.ClientRuntime; 498DispatchRuntime dispatchBehavior = Channel.ClientRuntime.CallbackDispatchRuntime; 522return Channel.ClientRuntime.CallbackDispatchRuntime.ChannelDispatcher.HandleError(e, ref faultInfo); 911enableFaults = Channel.ClientRuntime.EnableFaults;