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

listNoteVersions() public method

public listNoteVersions ( string authenticationToken, string noteGuid ) : List
authenticationToken string
noteGuid string
return List
      public List<NoteVersionId> listNoteVersions(string authenticationToken, string noteGuid)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_listNoteVersions(authenticationToken, noteGuid);
        return recv_listNoteVersions();

        #else
        var asyncResult = Begin_listNoteVersions(null, null, authenticationToken, noteGuid);
        return End_listNoteVersions(asyncResult);

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