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

unsetNoteApplicationDataEntry() public method

public unsetNoteApplicationDataEntry ( string authenticationToken, string guid, string key ) : int
authenticationToken string
guid string
key string
return int
      public int unsetNoteApplicationDataEntry(string authenticationToken, string guid, string key)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_unsetNoteApplicationDataEntry(authenticationToken, guid, key);
        return recv_unsetNoteApplicationDataEntry();

        #else
        var asyncResult = Begin_unsetNoteApplicationDataEntry(null, null, authenticationToken, guid, key);
        return End_unsetNoteApplicationDataEntry(asyncResult);

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