Amazon.CognitoSync.SyncManager.Dataset.Remove C# (CSharp) Method

Remove() public method

Marks a Amazon.CognitoSync.SyncManager.Record with the given key as deleted. Nothing happens if the Amazon.CognitoSync.SyncManager.Record doesn't exist or is deleted already.
public Remove ( string key ) : void
key string Key identifying the Record
return void
        public void Remove(string key)
        {
            Local.PutValue(IdentityId, DatasetName, DatasetUtils.ValidateRecordKey(key), null);
        }