示例#1
0
 public StatementDeserializer(Stream input)
 {
     try
     {
         this._input = _jsonFactory.createJsonParser(input);
         this._state = State.BeforeOuterArray;
     }
     catch (IOException e)
     {
         throw new Exception(e);
     }
 }