11 references to IncomingChannels
SMSvcHost (1)
System\ServiceModel\Activation\WorkerProcess.cs (1)
257foreach (IChannel channel in OperationContext.Current.InstanceContext.IncomingChannels)
System.ServiceModel (1)
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
1723if (!rpc.InstanceContext.IncomingChannels.Contains(proxy))
System.WorkflowServices (9)
System\ServiceModel\Dispatcher\DurableErrorHandler.cs (1)
27OperationContext.Current.InstanceContext.IncomingChannels.Clear();
System\ServiceModel\Dispatcher\DurableInstanceContextProvider.cs (4)
67if (!string.IsNullOrEmpty(channel.SessionId) && !result.IncomingChannels.Contains(channel)) 69result.IncomingChannels.Add(channel); 118instanceContext.IncomingChannels.Add(channel); 155if (instanceContext.IncomingChannels.Count == 0)
System\ServiceModel\Dispatcher\WorkflowInstanceContextProvider.cs (4)
228IChannel[] incomingChannels = new IChannel[callbackState.InstanceContext.IncomingChannels.Count]; 229callbackState.InstanceContext.IncomingChannels.CopyTo(incomingChannels, 0); 231if (callbackState.InstanceContext.IncomingChannels.Count != 0) 235callbackState.InstanceContext.IncomingChannels.Remove(channel);