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

getLinkedNotebookSyncChunk_Process() public méthode

public getLinkedNotebookSyncChunk_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
Résultat void
      public void getLinkedNotebookSyncChunk_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        getLinkedNotebookSyncChunk_args args = new getLinkedNotebookSyncChunk_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        getLinkedNotebookSyncChunk_result result = new getLinkedNotebookSyncChunk_result();
        try {
          result.Success = iface_.getLinkedNotebookSyncChunk(args.AuthenticationToken, args.LinkedNotebook, args.AfterUSN, args.MaxEntries, args.FullSyncOnly);
        } 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("getLinkedNotebookSyncChunk", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor