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