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

getLinkedNotebookSyncChunk() public method

public getLinkedNotebookSyncChunk ( string authenticationToken, Evernote linkedNotebook, int afterUSN, int maxEntries, bool fullSyncOnly ) : SyncChunk
authenticationToken string
linkedNotebook Evernote
afterUSN int
maxEntries int
fullSyncOnly bool
return SyncChunk
      public SyncChunk getLinkedNotebookSyncChunk(string authenticationToken, Evernote.EDAM.Type.LinkedNotebook linkedNotebook, int afterUSN, int maxEntries, bool fullSyncOnly)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getLinkedNotebookSyncChunk(authenticationToken, linkedNotebook, afterUSN, maxEntries, fullSyncOnly);
        return recv_getLinkedNotebookSyncChunk();

        #else
        var asyncResult = Begin_getLinkedNotebookSyncChunk(null, null, authenticationToken, linkedNotebook, afterUSN, maxEntries, fullSyncOnly);
        return End_getLinkedNotebookSyncChunk(asyncResult);

        #endif
      }
      #if SILVERLIGHT || NETFX_CORE
NoteStore.Client