1 write to channelsByInput
System.ServiceModel (1)
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
769this.channelsByInput = new Dictionary<UniqueId, TReliableChannel>();
7 references to channelsByInput
System.ServiceModel (7)
System\ServiceModel\Channels\ReliableChannelListener.cs (7)
605if ((id == null) || !this.channelsByInput.TryGetValue(id, out channel)) 667return (this.channelsByInput == null) ? false : (this.channelsByInput.Count > 0); 685return (this.channelsByInput.Count == 1) ? channelsByInput.ContainsKey(inputId) : false; 833this.channelsByInput.Add(id, reliableChannel); 849this.channelsByInput.Remove(inputId);