I've got an IronPython environment hosted in one of my applications. In that environment I'd like to access certain methods of an object that is represented by an interface. But I'd like to let IronPython only get access to those methods exported by the interface.
I can do this:
ITheInterface obj = (ITheInterface)origObj;
sc.SetVariable("obj", obj);
where sc is the scope, origObj is an instance of a class that implements ITheInterface and ITheInterface is... well... the interface.
But I still can access public methods of the origObj instance that are not exported by ITheInterface.
How can I restrict IronPython's access to only those methods that are exported by the interface?