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

setNoteApplicationDataEntry() public method

public setNoteApplicationDataEntry ( string authenticationToken, string guid, string key, string value ) : int
authenticationToken string
guid string
key string
value string
return int
      public int setNoteApplicationDataEntry(string authenticationToken, string guid, string key, string value)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_setNoteApplicationDataEntry(authenticationToken, guid, key, value);
        return recv_setNoteApplicationDataEntry();

        #else
        var asyncResult = Begin_setNoteApplicationDataEntry(null, null, authenticationToken, guid, key, value);
        return End_setNoteApplicationDataEntry(asyncResult);

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