Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

public static void DeleteLocalUserMetadata(string key, Action<string> onSuccess = null, Action<string> onFailure = null)

- Description

Deletes the local user’s metadata via key-value lookup.

 

For more information on user metadata, see INSERTPAGE for details.

- Sample

using CavrnusSdk.API;
using UnityEngine;
public class ExampleScript: MonoBehaviour
{
    public void Start()
    {
        CavrnusFunctionLibrary.AwaitAuthentication(authentication => {
            CavrnusFunctionLibrary.DeleteLocalUserMetadata("nickname", print, print);
        });
    }
}

 

  • No labels