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

getNoteVersion() public method

public getNoteVersion ( string authenticationToken, string noteGuid, int updateSequenceNum, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData ) : Evernote.EDAM.Type.Note
authenticationToken string
noteGuid string
updateSequenceNum int
withResourcesData bool
withResourcesRecognition bool
withResourcesAlternateData bool
return Evernote.EDAM.Type.Note
      public Evernote.EDAM.Type.Note getNoteVersion(string authenticationToken, string noteGuid, int updateSequenceNum, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getNoteVersion(authenticationToken, noteGuid, updateSequenceNum, withResourcesData, withResourcesRecognition, withResourcesAlternateData);
        return recv_getNoteVersion();

        #else
        var asyncResult = Begin_getNoteVersion(null, null, authenticationToken, noteGuid, updateSequenceNum, withResourcesData, withResourcesRecognition, withResourcesAlternateData);
        return End_getNoteVersion(asyncResult);

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