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

getLinkedNotebookSyncState() public method

public getLinkedNotebookSyncState ( string authenticationToken, Evernote linkedNotebook ) : SyncState
authenticationToken string
linkedNotebook Evernote
return SyncState
      public SyncState getLinkedNotebookSyncState(string authenticationToken, Evernote.EDAM.Type.LinkedNotebook linkedNotebook)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getLinkedNotebookSyncState(authenticationToken, linkedNotebook);
        return recv_getLinkedNotebookSyncState();

        #else
        var asyncResult = Begin_getLinkedNotebookSyncState(null, null, authenticationToken, linkedNotebook);
        return End_getLinkedNotebookSyncState(asyncResult);

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