コード例 #1
0
 public void listTagsByNotebook_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   listTagsByNotebook_args args = new listTagsByNotebook_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   listTagsByNotebook_result result = new listTagsByNotebook_result();
   try {
     result.Success = iface_.listTagsByNotebook(args.AuthenticationToken, args.NotebookGuid);
   } 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("listTagsByNotebook", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }