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

copyNote() public method

public copyNote ( string authenticationToken, string noteGuid, string toNotebookGuid ) : Evernote.EDAM.Type.Note
authenticationToken string
noteGuid string
toNotebookGuid string
return Evernote.EDAM.Type.Note
      public Evernote.EDAM.Type.Note copyNote(string authenticationToken, string noteGuid, string toNotebookGuid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_copyNote(authenticationToken, noteGuid, toNotebookGuid);
        return recv_copyNote();

        #else
        var asyncResult = Begin_copyNote(null, null, authenticationToken, noteGuid, toNotebookGuid);
        return End_copyNote(asyncResult);

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