Is there a way to make a hosted IronPython engine resume execution of a script after accessing a non-existing method or property of an object instance? Usually an exception is thrown that unfortunately interrupts execution of the script.
I execute IronPython scripts with instances of several different C# classes (e.g. class A and B) in their scopes that implement more or less the same methods and properties. However class A implements more methods and properties in addition to those shared by both classes.
Class A may and should remain throwning the exception as the methods of this class that the script accesses must exist. If they don't there's indeed something wrong with the script.
Class B however is only or visualization purposes and hence IronPython could ignore/skip calls to methods that don't exist in this class but in class A and continue execution.
Any idea? Thanks a lot!