2 writes to channel
System.ServiceModel (2)
System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
80this.channel = channel; 688this.channel = new ServiceChannel(this.binder, endpoint, this.listener.ChannelDispatcher, this.idleManager);
23 references to channel
System.ServiceModel (23)
System\ServiceModel\Dispatcher\ChannelHandler.cs (23)
218get { return this.channel; } 228get { return (this.channel != null) ? this.channel.InstanceContext : null; } 550this.requestInfo.Channel = this.channel; 679if (this.channel == null) 683if (this.channel == null) 689this.InitializeServiceChannel(this.channel); 695if (this.channel == null) 701endpoint = this.channel.EndpointDispatcher; 703return this.channel; 758else if (this.channel != null) 760DispatchRuntime dispatchBehavior = this.channel.ClientRuntime.CallbackDispatchRuntime; 761dispatchBehavior.ChannelDispatcher.ProvideFault(e, this.channel.GetProperty<FaultConverter>(), ref faultInfo); 782else if (this.channel != null) 784return this.channel.ClientRuntime.CallbackDispatchRuntime.ChannelDispatcher.HandleError(e, ref faultInfo); 898if (this.channel != null) 900this.channel.HandleReceiveComplete(context); 1243else if (this.channel != null && this.channel.IsClient) 1245enableFaults = this.channel.ClientRuntime.EnableFaults; 1262var state = new ContinuationState { ChannelHandler = this, Channel = channel, Exception = exception, FaultInfo = faultInfo, Request = request, Reply = reply }; 1879this.HandleError(e, request, channel); 1914this.HandleError(e, request, channel);