예제 #1
0
    void endpoint()
    {
        Bmob.Endpoint <Hashtable> ("test", (resp, exception) => {
            if (exception != null)
            {
                print("查询失败, 失败原因为: " + exception.Message);
                return;
            }

            print("返回对象为: " + resp);
        });
    }