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