1 write to dictionary
System.ServiceModel (1)
System\ServiceModel\Dispatcher\MessageQueryTable.cs (1)
22
this.
dictionary
= new Dictionary<MessageQuery, TItem>();
12 references to dictionary
System.ServiceModel (12)
System\ServiceModel\Dispatcher\MessageQueryTable.cs (12)
28
get { return this.
dictionary
.Count; }
38
get { return this.
dictionary
.Keys; }
43
get { return this.
dictionary
.Values; }
50
return this.
dictionary
[key];
82
this.
dictionary
.Add(key, value);
93
this.
dictionary
.Clear();
98
return ((ICollection<KeyValuePair<MessageQuery, TItem>>) this.
dictionary
).Contains(item);
103
return this.
dictionary
.ContainsKey(key);
108
((ICollection<KeyValuePair<MessageQuery, TItem>>) this.
dictionary
).CopyTo(array, arrayIndex);
133
return ((ICollection<KeyValuePair<MessageQuery, TItem>>) this.
dictionary
).GetEnumerator();
144
if (this.
dictionary
.Remove(key))
172
return this.
dictionary
.TryGetValue(key, out value);