Evernote.EDAM.NoteStore.NoteStore.Client.send_getLinkedNotebookSyncChunk C# (CSharp) Method

send_getLinkedNotebookSyncChunk() public method

public send_getLinkedNotebookSyncChunk ( string authenticationToken, Evernote linkedNotebook, int afterUSN, int maxEntries, bool fullSyncOnly ) : void
authenticationToken string
linkedNotebook Evernote
afterUSN int
maxEntries int
fullSyncOnly bool
return void
      public void send_getLinkedNotebookSyncChunk(string authenticationToken, Evernote.EDAM.Type.LinkedNotebook linkedNotebook, int afterUSN, int maxEntries, bool fullSyncOnly)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("getLinkedNotebookSyncChunk", TMessageType.Call, seqid_));
        getLinkedNotebookSyncChunk_args args = new getLinkedNotebookSyncChunk_args();
        args.AuthenticationToken = authenticationToken;
        args.LinkedNotebook = linkedNotebook;
        args.AfterUSN = afterUSN;
        args.MaxEntries = maxEntries;
        args.FullSyncOnly = fullSyncOnly;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT || NETFX_CORE
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }

Same methods

NoteStore.Client::send_getLinkedNotebookSyncChunk ( AsyncCallback callback, object state, string authenticationToken, Evernote linkedNotebook, int afterUSN, int maxEntries, bool fullSyncOnly ) : IAsyncResult
NoteStore.Client