Example #1
0
 public void findNotes_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   findNotes_args args = new findNotes_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   findNotes_result result = new findNotes_result();
   try {
     result.Success = iface_.findNotes(args.AuthenticationToken, args.Filter, args.Offset, args.MaxNotes);
   } catch (Evernote.EDAM.Error.EDAMUserException userException) {
     result.UserException = userException;
   } catch (Evernote.EDAM.Error.EDAMSystemException systemException) {
     result.SystemException = systemException;
   } catch (Evernote.EDAM.Error.EDAMNotFoundException notFoundException) {
     result.NotFoundException = notFoundException;
   }
   oprot.WriteMessageBegin(new TMessage("findNotes", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
Example #2
0
 public NoteList recv_findNotes()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   findNotes_result result = new findNotes_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   if (result.__isset.userException) {
     throw result.UserException;
   }
   if (result.__isset.systemException) {
     throw result.SystemException;
   }
   if (result.__isset.notFoundException) {
     throw result.NotFoundException;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "findNotes failed: unknown result");
 }