Recreating Dependent Services on State Change Without Destroying Runtime

I have some state/values that when they change, I need to recreate all/most services (at least the ones that depends on it), and allow others to subscribe to the event to take the appropriate actions. Is there any mechanisms for this? I see that I can I do "runtime.dispose", that will trigger all finalizers (which is what I want), but it also destroys the runtime (which I don't want).
Was this page helpful?