Exemplo n.º 1
0
 public override void SetResponse(BlittableJsonReaderObject response)
 {
     if (response == null)
     {
         throw new InvalidOperationException("Got null response from the server after doing a batch, something is very wrong. Probably a garbled response. " +
                                             "Commands: " + string.Join(",", Commands));
     }
     Result = JsonDeserializationClient.BatchResult(response);
 }