public void expungeInactiveNotes_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   expungeInactiveNotes_args args = new expungeInactiveNotes_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   expungeInactiveNotes_result result = new expungeInactiveNotes_result();
   try {
     result.Success = iface_.expungeInactiveNotes(args.AuthenticationToken);
   } catch (Evernote.EDAM.Error.EDAMUserException userException) {
     result.UserException = userException;
   } catch (Evernote.EDAM.Error.EDAMSystemException systemException) {
     result.SystemException = systemException;
   }
   oprot.WriteMessageBegin(new TMessage("expungeInactiveNotes", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
 public int recv_expungeInactiveNotes()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   expungeInactiveNotes_result result = new expungeInactiveNotes_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;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "expungeInactiveNotes failed: unknown result");
 }