1 write to incomingChannels
System.ServiceModel (1)
System\ServiceModel\ServiceChannelManager.cs (1)
258this.incomingChannels = new ChannelCollection(this, this.ThisLock);
15 references to incomingChannels
System.ServiceModel (15)
System\ServiceModel\ServiceChannelManager.cs (15)
47return (ICollection<IChannel>)this.incomingChannels; 95if (this.incomingChannels == null) 102if (this.incomingChannels.Contains(channel)) 104this.incomingChannels.Add(channel); 110if (this.incomingChannels.Contains(channel)) 112this.incomingChannels.Add(channel); 256if (this.incomingChannels == null) 261this.incomingChannels.Add(this.firstIncomingChannel); 365else if (this.incomingChannels != null && this.incomingChannels.Contains(channel)) 367this.incomingChannels.Remove(channel); 395if (this.incomingChannels != null) 397IChannel[] channels = new IChannel[this.incomingChannels.Count + outgoingCount]; 398this.incomingChannels.CopyTo(channels, 0); 400this.outgoingChannels.CopyTo(channels, this.incomingChannels.Count);