1 write to table
System.ServiceModel (1)
System\ServiceModel\Dispatcher\MessageFilterTable.cs (1)
606this.table = t;
21 references to table
System.ServiceModel (21)
System\ServiceModel\Dispatcher\MessageFilterTable.cs (21)
165if (this.tables[i].priority == priority && this.tables[i].table.GetType().Equals(tableType)) 167table = this.tables[i].table; 197table = this.tables[idx].table; 268if (this.tables[i].table.ContainsKey(filter)) 295if (this.tables[i].table.GetMatchingValue(message, out currentData)) 327IMessageFilterTable<TFilterData> table = this.tables[i].table; 378if (messageToReadHeaders != null && this.tables[i].table is ActionMessageFilterTable<TFilterData>) 381result = this.tables[i].table.GetMatchingValue(messageToReadHeaders, out currentData); 386result = this.tables[i].table.GetMatchingValue(buffer, out currentData); 419this.tables[i].table.GetMatchingValues(message, results); 441this.tables[i].table.GetMatchingValues(buffer, results); 461if (this.tables[i].table.GetMatchingFilter(message, out f)) 494if (this.tables[i].table.GetMatchingFilter(buffer, out f)) 529this.tables[i].table.GetMatchingFilters(message, results); 551this.tables[i].table.GetMatchingFilters(buffer, results); 561if (this.tables[i].table.Remove(filter)) 563if (this.tables[i].table.Count == 0) 623return x.table.GetType().FullName.CompareTo(y.table.GetType().FullName); 635return x.table.GetType().FullName.Equals(y.table.GetType().FullName);