23 references to ClientRuntime
System.ServiceModel (23)
System\ServiceModel\Administration\ServiceInstanceProvider.cs (2)
367string contractName = null != serviceChannel.ClientRuntime ? serviceChannel.ClientRuntime.ContractName : String.Empty;
System\ServiceModel\Channels\ServiceChannel.cs (12)
385get { return this.ClientRuntime.GetRuntime().UnhandledProxyOperation; } 583DispatchRuntime dispatchBehavior = this.ClientRuntime.DispatchRuntime; 617if (!oneway && !this.ClientRuntime.ManualAddressing && rpc.Request.Version.Addressing != AddressingVersion.None) 965DispatchRuntime dispatchBehavior = this.ClientRuntime.DispatchRuntime; 1184if (!this.didInteractiveInitialization && (this.ClientRuntime.InteractiveChannelInitializers.Count > 0)) 1186IInteractiveChannelInitializer example = this.ClientRuntime.InteractiveChannelInitializers[0]; 1203if (this.ClientRuntime.InteractiveChannelInitializers.Count > 0) 1205IInteractiveChannelInitializer example = this.ClientRuntime.InteractiveChannelInitializers[0]; 1231DispatchRuntime dispatchRuntime = this.ClientRuntime.DispatchRuntime; 1780this.ClientRuntime.GetRuntime().DisplayInitializationUI(this); 1793return this.ClientRuntime.GetRuntime().BeginDisplayInitializationUI(this, callback, state); 1798this.ClientRuntime.GetRuntime().EndDisplayInitializationUI(result);
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
382serviceChannel.ClientRuntime.GetRuntime().InitializeChannel((IClientChannel)serviceChannel.Proxy);
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
46this.proxyRuntime = serviceChannel.ClientRuntime.GetRuntime();
System\ServiceModel\ClientBase.cs (1)
1122this.runtime = this.channel.ClientRuntime.GetRuntime();
System\ServiceModel\ComIntegration\DispatchProxy.cs (1)
348ProxyOperationRuntime operationRuntime = channelBuilderSettings.ServiceChannel.ClientRuntime.GetRuntime().GetOperationByName(opDesc.Name);
System\ServiceModel\Dispatcher\ChannelHandler.cs (5)
75ClientRuntime clientRuntime = channel.ClientRuntime; 732ClientRuntime clientRuntime = channel.ClientRuntime; 760DispatchRuntime dispatchBehavior = this.channel.ClientRuntime.CallbackDispatchRuntime; 784return this.channel.ClientRuntime.CallbackDispatchRuntime.ChannelDispatcher.HandleError(e, ref faultInfo); 1245enableFaults = this.channel.ClientRuntime.EnableFaults;