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

updateNote() public method

public updateNote ( string authenticationToken, Evernote note ) : Evernote.EDAM.Type.Note
authenticationToken string
note Evernote
return Evernote.EDAM.Type.Note
      public Evernote.EDAM.Type.Note updateNote(string authenticationToken, Evernote.EDAM.Type.Note note)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_updateNote(authenticationToken, note);
        return recv_updateNote();

        #else
        var asyncResult = Begin_updateNote(null, null, authenticationToken, note);
        return End_updateNote(asyncResult);

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