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

send_getLinkedNotebookSyncState() public method

public send_getLinkedNotebookSyncState ( string authenticationToken, Evernote linkedNotebook ) : void
authenticationToken string
linkedNotebook Evernote
return void
      public void send_getLinkedNotebookSyncState(string authenticationToken, Evernote.EDAM.Type.LinkedNotebook linkedNotebook)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("getLinkedNotebookSyncState", TMessageType.Call, seqid_));
        getLinkedNotebookSyncState_args args = new getLinkedNotebookSyncState_args();
        args.AuthenticationToken = authenticationToken;
        args.LinkedNotebook = linkedNotebook;
        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_getLinkedNotebookSyncState ( AsyncCallback callback, object state, string authenticationToken, Evernote linkedNotebook ) : IAsyncResult
NoteStore.Client