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

getResourceApplicationDataEntry() public method

public getResourceApplicationDataEntry ( string authenticationToken, string guid, string key ) : string
authenticationToken string
guid string
key string
return string
      public string getResourceApplicationDataEntry(string authenticationToken, string guid, string key)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getResourceApplicationDataEntry(authenticationToken, guid, key);
        return recv_getResourceApplicationDataEntry();

        #else
        var asyncResult = Begin_getResourceApplicationDataEntry(null, null, authenticationToken, guid, key);
        return End_getResourceApplicationDataEntry(asyncResult);

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