Пример #1
0
            public ThriftS.IDL.ThriftSResponse recv_Ping()
            {
                TMessage msg = iprot_.ReadMessageBegin();

                if (msg.Type == TMessageType.Exception)
                {
                    TApplicationException x = TApplicationException.Read(iprot_);
                    iprot_.ReadMessageEnd();
                    throw x;
                }
                Ping_result result = new Ping_result();

                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success)
                {
                    return(result.Success);
                }
                if (result.__isset.badRequestException)
                {
                    throw result.BadRequestException;
                }
                if (result.__isset.internalServerException)
                {
                    throw result.InternalServerException;
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "Ping failed: unknown result");
            }
Пример #2
0
 public int recv_Ping()
 {
     TMessage msg = iprot_.ReadMessageBegin();
     if (msg.Type == TMessageType.Exception) {
         TApplicationException x = TApplicationException.Read(iprot_);
         iprot_.ReadMessageEnd();
         throw x;
     }
     Ping_result result = new Ping_result();
     result.Read(iprot_);
     iprot_.ReadMessageEnd();
     if (result.__isset.success) {
         return result.Success;
     }
     if (result.__isset.asapiEx) {
         throw result.AsapiEx;
     }
     throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "Ping failed: unknown result");
 }