3 writes to dictionaryStore
System.ServiceModel (3)
System\ServiceModel\Channels\ContextDictionary.cs (3)
22this.dictionaryStore = new Dictionary<string, string>(); 27this.dictionaryStore = new Dictionary<string, string>(); 54localEmpty.dictionaryStore = new ReadOnlyDictionaryInternal<string, string>(new Dictionary<string, string>(0));
18 references to dictionaryStore
System.ServiceModel (18)
System\ServiceModel\Channels\ContextDictionary.cs (18)
37this.dictionaryStore.Add(pair); 64get { return this.dictionaryStore.Count; } 69get { return this.dictionaryStore.IsReadOnly; } 74get { return this.dictionaryStore.Keys; } 79get { return this.dictionaryStore.Values; } 87return this.dictionaryStore[key]; 96this.dictionaryStore[key] = value; 108this.dictionaryStore.Add(key, value); 123this.dictionaryStore.Add(item); 128this.dictionaryStore.Clear(); 143return this.dictionaryStore.Contains(item); 150return this.dictionaryStore.ContainsKey(key); 155this.dictionaryStore.CopyTo(array, arrayIndex); 161return this.dictionaryStore.GetEnumerator(); 166return ((IEnumerable)this.dictionaryStore).GetEnumerator(); 172return this.dictionaryStore.Remove(key); 187return this.dictionaryStore.Remove(item); 193return this.dictionaryStore.TryGetValue(key, out value);