1 write to table
System.ServiceModel (1)
System\ServiceModel\Dispatcher\ThreadSafeMessageFilterTable.cs (1)
20this.table = new MessageFilterTable<FilterData>();
27 references to table
System.ServiceModel (27)
System\ServiceModel\Dispatcher\ThreadSafeMessageFilterTable.cs (27)
35return this.table.DefaultPriority; 42this.table.DefaultPriority = value; 51this.table.Add(filter, data, priority); 65return this.table.Count; 74this.table.Clear(); 82return this.table.GetMatchingValue(message, out data); 90return this.table.GetMatchingValue(buffer, out data); 98return this.table.GetMatchingValues(message, results); 106return this.table.GetMatchingValues(buffer, results); 114return this.table.GetMatchingFilter(message, out filter); 122return this.table.GetMatchingFilter(buffer, out filter); 130return this.table.GetMatchingFilters(message, results); 138return this.table.GetMatchingFilters(buffer, results); 152return this.table[key]; 159this.table[key] = value; 170return this.table.Keys; 181return this.table.Values; 190return this.table.ContainsKey(key); 198this.table.Add(key, value); 206return this.table.Remove(key); 220return ((ICollection<KeyValuePair<MessageFilter, FilterData>>)this.table).IsReadOnly; 229((ICollection<KeyValuePair<MessageFilter, FilterData>>)this.table).Add(item); 237return ((ICollection<KeyValuePair<MessageFilter, FilterData>>)this.table).Contains(item); 245((ICollection<KeyValuePair<MessageFilter, FilterData>>)this.table).CopyTo(array, arrayIndex); 253return ((ICollection<KeyValuePair<MessageFilter, FilterData>>)this.table).Remove(item); 269return ((ICollection<KeyValuePair<MessageFilter, FilterData>>)this.table).GetEnumerator(); 277return this.table.TryGetValue(filter, out data);