1 write to outgoingChannels
System.ServiceModel (1)
System\ServiceModel\ServiceChannelManager.cs (1)
60this.outgoingChannels = new ChannelCollection(this, this.ThisLock);
12 references to outgoingChannels
System.ServiceModel (12)
System\ServiceModel\ServiceChannelManager.cs (12)
55if (this.outgoingChannels == null) 59if (this.outgoingChannels == null) 63return this.outgoingChannels; 77ICollection<IChannel> outgoing = this.outgoingChannels; 370else if (this.outgoingChannels != null && this.outgoingChannels.Contains(channel)) 372this.outgoingChannels.Remove(channel); 384int outgoingCount = (this.outgoingChannels != null ? this.outgoingChannels.Count : 0); 391this.outgoingChannels.CopyTo(channels, 1); 400this.outgoingChannels.CopyTo(channels, this.incomingChannels.Count); 407this.outgoingChannels.CopyTo(channels, 0);