System.Reactive.PlatformServices.HostLifecycleNotifications
namespace System.Reactive.PlatformServices
{
internal sealed class HostLifecycleNotifications : IHostLifecycleNotifications
{
public event EventHandler<HostSuspendingEventArgs> Suspending;
public event EventHandler<HostResumingEventArgs> Resuming;
public HostLifecycleNotifications();
}
}