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