Example #1
0
 public string recv_beginFileDownload()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   beginFileDownload_result result = new beginFileDownload_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   if (result.__isset.aze) {
     throw result.Aze;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "beginFileDownload failed: unknown result");
 }
Example #2
0
 public void beginFileDownload_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   beginFileDownload_args args = new beginFileDownload_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   beginFileDownload_result result = new beginFileDownload_result();
   try {
     result.Success = iface_.beginFileDownload(args.File);
   } catch (AuthorizationException aze) {
     result.Aze = aze;
   }
   oprot.WriteMessageBegin(new TMessage("beginFileDownload", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }