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

getNoteApplicationDataEntry() public method

public getNoteApplicationDataEntry ( string authenticationToken, string guid, string key ) : string
authenticationToken string
guid string
key string
return string
      public string getNoteApplicationDataEntry(string authenticationToken, string guid, string key)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getNoteApplicationDataEntry(authenticationToken, guid, key);
        return recv_getNoteApplicationDataEntry();

        #else
        var asyncResult = Begin_getNoteApplicationDataEntry(null, null, authenticationToken, guid, key);
        return End_getNoteApplicationDataEntry(asyncResult);

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