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