Example #1
0
 public CustomVariableManager(CustomVariablesConfiguration config)
 {
     this.config       = config;
     globalVariableMap = new SerializableLiteralStringMap();
     localVariableMap  = new SerializableLiteralStringMap();
 }
Example #2
0
 /// <summary>
 /// Creates a new instance deep-copying another provided instance.
 /// </summary>
 public StateMap(StateMap stateMap)
 {
     stateMap.OnBeforeSerialize();
     objectJsonMap = new SerializableLiteralStringMap(stateMap.objectJsonMap);
     OnAfterDeserialize();
 }