1 write to _dictionary
System.Speech (1)
Result\SemanticValue.cs (1)
24_dictionary = new Dictionary<string, SemanticValue>();
21 references to _dictionary
System.Speech (21)
Result\RecognizedPhrase.cs (9)
477foreach (KeyValuePair<string, SemanticValue> kv in childrenSemantics._dictionary) 508semanticValue._dictionary.Add(children._name, childrenSemantics); 535semanticValue._dictionary.Clear(); 629bool containsKey = semanticValue._dictionary.ContainsKey(key); 632semanticValue._dictionary.Add(key, thisSemanticValue); 636if (!semanticValue._dictionary[key].Equals(thisSemanticValue)) 650while (semanticValue._dictionary.ContainsKey(key)); 651semanticValue._dictionary.Add(key, thisSemanticValue); 653SemanticValue s = semanticValue._dictionary[key];
Result\SemanticValue.cs (12)
46foreach (KeyValuePair<string, SemanticValue> kv in _dictionary) 93get { return _dictionary[key]; } 98return (_dictionary.ContainsKey(item.Key) && _dictionary.ContainsValue(item.Value)); 102return _dictionary.ContainsKey(key); 106get { return _dictionary.Count; } 138((ICollection<KeyValuePair<string, SemanticValue>>)_dictionary).CopyTo(array, index); 142return _dictionary.GetEnumerator(); 152get { return _dictionary.Keys; } 157get { return _dictionary.Values; } 166return _dictionary.TryGetValue(key, out value); 207_dictionary = value._dictionary;