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