public List<TCell> recv_getVer()
{
TMessage msg = iprot_.ReadMessageBegin();
if (msg.Type == TMessageType.Exception) {
TApplicationException x = TApplicationException.Read(iprot_);
iprot_.ReadMessageEnd();
throw x;
}
getVer_result result = new getVer_result();
result.Read(iprot_);
iprot_.ReadMessageEnd();
if (result.__isset.success) {
return result.success;
}
if (result.__isset.io) {
throw result.io;
}
if (result.__isset.nf) {
throw result.nf;
}
throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getVer failed: unknown result");
}