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

getResourceByHash() public method

public getResourceByHash ( string authenticationToken, string noteGuid, byte contentHash, bool withData, bool withRecognition, bool withAlternateData ) : Evernote.EDAM.Type.Resource
authenticationToken string
noteGuid string
contentHash byte
withData bool
withRecognition bool
withAlternateData bool
return Evernote.EDAM.Type.Resource
      public Evernote.EDAM.Type.Resource getResourceByHash(string authenticationToken, string noteGuid, byte[] contentHash, bool withData, bool withRecognition, bool withAlternateData)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getResourceByHash(authenticationToken, noteGuid, contentHash, withData, withRecognition, withAlternateData);
        return recv_getResourceByHash();

        #else
        var asyncResult = Begin_getResourceByHash(null, null, authenticationToken, noteGuid, contentHash, withData, withRecognition, withAlternateData);
        return End_getResourceByHash(asyncResult);

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