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

setResourceApplicationDataEntry() public method

public setResourceApplicationDataEntry ( string authenticationToken, string guid, string key, string value ) : int
authenticationToken string
guid string
key string
value string
return int
      public int setResourceApplicationDataEntry(string authenticationToken, string guid, string key, string value)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_setResourceApplicationDataEntry(authenticationToken, guid, key, value);
        return recv_setResourceApplicationDataEntry();

        #else
        var asyncResult = Begin_setResourceApplicationDataEntry(null, null, authenticationToken, guid, key, value);
        return End_setResourceApplicationDataEntry(asyncResult);

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