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

unsetResourceApplicationDataEntry() public method

public unsetResourceApplicationDataEntry ( string authenticationToken, string guid, string key ) : int
authenticationToken string
guid string
key string
return int
      public int unsetResourceApplicationDataEntry(string authenticationToken, string guid, string key)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_unsetResourceApplicationDataEntry(authenticationToken, guid, key);
        return recv_unsetResourceApplicationDataEntry();

        #else
        var asyncResult = Begin_unsetResourceApplicationDataEntry(null, null, authenticationToken, guid, key);
        return End_unsetResourceApplicationDataEntry(asyncResult);

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