2 writes to dictionary
System.Workflow.ComponentModel (2)
AuthoringOM\Serializer\DictionarySurrogate.cs (2)
79this.dictionary = dictionaryType.GetConstructor(Type.EmptyTypes).Invoke(null); 108this.dictionary = null;
6 references to dictionary
System.Workflow.ComponentModel (6)
AuthoringOM\Serializer\DictionarySurrogate.cs (6)
76if (this.dictionary == null) 81return this.dictionary; 85if (this.dictionary != null) 87MethodInfo addMethod = this.dictionary.GetType().GetMethod("Add"); 98addMethod.Invoke(this.dictionary, kvp); 105addMethod.Invoke(this.dictionary, kvp);