Exemplo n.º 1
0
 public StateResult(IJsonState nextState, string key, string value, string arrayValue,
                    StateResultAction stateResultAction) : this(nextState)
 {
     Key                    = key;
     Value                  = value;
     ArrayValue             = arrayValue;
     this.stateResultAction = stateResultAction;
 }
Exemplo n.º 2
0
 public StateResult(IJsonState nextState)
 {
     NextState = nextState;
 }