Exemplo n.º 1
0
 public void getUserAwards_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getUserAwards_args args = new getUserAwards_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getUserAwards_result result = new getUserAwards_result();
   try {
     result.Success = iface_.getUserAwards(args.UserId, args.Session);
   } catch (UserException ex) {
     result.Ex = ex;
   } catch (SessionException se) {
     result.Se = se;
   }
   oprot.WriteMessageBegin(new TMessage("getUserAwards", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
Exemplo n.º 2
0
 public List<AwardAndHonor> recv_getUserAwards()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   getUserAwards_result result = new getUserAwards_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, "getUserAwards failed: unknown result");
 }