1 write to _incomingChannels
System.ServiceModel.Primitives (1)
System\ServiceModel\ServiceChannelManager.cs (1)
180_incomingChannels = new ChannelCollection(this, ThisLock);
10 references to _incomingChannels
System.ServiceModel.Primitives (10)
System\ServiceModel\ServiceChannelManager.cs (10)
33return _incomingChannels; 178if (_incomingChannels == null) 183_incomingChannels.Add(_firstIncomingChannel); 282else if (_incomingChannels != null && _incomingChannels.Contains(channel)) 284_incomingChannels.Remove(channel); 315if (_incomingChannels != null) 317IChannel[] channels = new IChannel[_incomingChannels.Count + outgoingCount]; 318_incomingChannels.CopyTo(channels, 0); 321_outgoingChannels.CopyTo(channels, _incomingChannels.Count);