Пример #1
0
        public Rooted <JS.Value> Get()
        {
            var root = new Rooted <JS.Value>(Context, JS.Value.Undefined);

            if (JSAPI.GetPendingException(Context, root))
            {
                return(root);
            }

            root.Dispose();
            return(null);
        }
Пример #2
0
        public Rooted <JS.Value> GetProperty(JSContextPtr context, string name)
        {
            var result = new Rooted <JS.Value>(context);

            if (JSAPI.GetProperty(context, TransientSelf(), name, result))
            {
                return(result);
            }

            result.Dispose();
            return(null);
        }