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