Beispiel #1
0
    void ResetPassword()
    {
        Bmob.Reset("*****@*****.**", (resp, exception) => {
            if (exception != null)
            {
                print("重置密码请求失败, 失败原因为: " + exception.Message);
                return;
            }

            print("重置密码请求发送成功!");
        });
    }