Exemple #1
0
        public List<object> GetList(String expression)
        {
            var result = this.Eval(expression);
            using (var inspector = new Inspecting.ObjectInspector(result)) {
                var list = inspector.GetList();

                return list;
            }
        }
Exemple #2
0
        public System.Collections.Hashtable GetHash(String expression)
        {
            var result = this.Eval(expression);
            using (var inspector = new Inspecting.ObjectInspector(result)) {
                var hash = inspector.GetHash();

                return hash;
            }
        }