1 write to filterTable
System.ServiceModel (1)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
209
this.
filterTable
= new MessageFilterTable<IChannelListener>();
11 references to filterTable
System.ServiceModel (11)
System\ServiceModel\Channels\ChannelDemuxer.cs (11)
346
if (this.
filterTable
.GetMatchingValue(message, out matchingListener))
371
if (this.
filterTable
.Count > 0)
373
KeyValuePair<MessageFilter, IChannelListener>[] pairs = new KeyValuePair<MessageFilter, IChannelListener>[this.
filterTable
.Count];
374
this.
filterTable
.CopyTo(pairs, 0);
402
if (this.
filterTable
.ContainsKey(filter.Filter))
404
this.
filterTable
.Remove(filter.Filter);
440
if (this.
filterTable
.ContainsKey(filter.Filter))
442
this.
filterTable
.Remove(filter.Filter);
476
if (this.
filterTable
.ContainsKey(filter.Filter))
478
this.
filterTable
.Remove(filter.Filter);
520
this.
filterTable
.Add(filter.Filter, listener, filter.Priority);