Evernote.EDAM.NoteStore.NoteStore.Processor.listTagsByNotebook_Process C# (CSharp) Méthode

listTagsByNotebook_Process() public méthode

public listTagsByNotebook_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
Résultat void
      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();
      }
NoteStore.Processor