コード例 #1
0
            public string recv_getEvents()
            {
                TMessage msg = iprot_.ReadMessageBegin();

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

                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success)
                {
                    return(result.Success);
                }
                if (result.__isset.ex)
                {
                    throw result.Ex;
                }
                if (result.__isset.se)
                {
                    throw result.Se;
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getEvents failed: unknown result");
            }
コード例 #2
0
 public string recv_getEvents()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   getEvents_result result = new getEvents_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   if (result.__isset.ex) {
     throw result.Ex;
   }
   if (result.__isset.se) {
     throw result.Se;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getEvents failed: unknown result");
 }