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

listNotebooks_Process() public méthode

public listNotebooks_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
Résultat void
      public void listNotebooks_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        listNotebooks_args args = new listNotebooks_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        listNotebooks_result result = new listNotebooks_result();
        try {
          result.Success = iface_.listNotebooks(args.AuthenticationToken);
        } catch (Evernote.EDAM.Error.EDAMUserException userException) {
          result.UserException = userException;
        } catch (Evernote.EDAM.Error.EDAMSystemException systemException) {
          result.SystemException = systemException;
        }
        oprot.WriteMessageBegin(new TMessage("listNotebooks", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor