On Wed, Oct 31, 2012 at 6:09 PM, Jared Whitby <[email protected]> wrote: > Which set of DLR APIs can you use to query the objects? I know about > the python inspect module, is there something similar in the DLR api?
The ObjectOperations, exposed via ScriptEngine.Operations. You can do things like engine.Operations.GetMember(obj, "foo") to work with DLR objects. - Jeff _______________________________________________ Ironpython-users mailing list [email protected] http://mail.python.org/mailman/listinfo/ironpython-users
