1 write to filterTable
System.ServiceModel (1)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
1651this.filterTable = new MessageFilterTable<InputQueueChannelListener<TInnerChannel>>();
7 references to filterTable
System.ServiceModel (7)
System\ServiceModel\Channels\ChannelDemuxer.cs (7)
1960if (this.filterTable.GetMatchingValue(message, out matchingListener)) 1998this.filterTable.Add(filter.Filter, (InputQueueChannelListener<TInnerChannel>)(object)listener, filter.Priority); 2097if (this.filterTable.ContainsKey(filter.Filter)) 2099this.filterTable.Remove(filter.Filter); 2351if (this.filterTable.Count > 0) 2353KeyValuePair<MessageFilter, InputQueueChannelListener<TInnerChannel>>[] pairs = new KeyValuePair<MessageFilter, InputQueueChannelListener<TInnerChannel>>[this.filterTable.Count]; 2354this.filterTable.CopyTo(pairs, 0);