Is there a mechanism in the dependency injector in OpenRasta that tears down the instance of an object that is created? Regardless the dependency lifetime.
I tried looking through the source, but could not directly find any tear down. Nor seems implementing IDisposable do the trick.
Update I was mainly looking for disposing a singleton, so I won't be opening a ticket on the openrasta-core project. For the moment I keep track of the instance of the singleton in my own library (currently not knowing how to access singletons in OpenRasta directly), to access upon application close.