Ejemplo n.º 1
0
 public void getPresentsSent_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getPresentsSent_args args = new getPresentsSent_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getPresentsSent_result result = new getPresentsSent_result();
   try {
     result.Success = iface_.getPresentsSent(args.Start, args.Size, args.Language, args.Country);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("getPresentsSent", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
Ejemplo n.º 2
0
 public ProductList recv_getPresentsSent()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   getPresentsSent_result result = new getPresentsSent_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   if (result.__isset.e) {
     throw result.E;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getPresentsSent failed: unknown result");
 }