System.Reactive.PlatformServices.IHostLifecycleNotifications
(Infrastructure) Provides notifications about the host's lifecycle events.
namespace System.Reactive.PlatformServices
{
public interface IHostLifecycleNotifications
{
event EventHandler<HostSuspendingEventArgs> Suspending;
event EventHandler<HostResumingEventArgs> Resuming;
}
}