<PackageReference Include="Microsoft.Win32.SystemEvents" Version="10.0.0-rc.1.25451.107" />

SessionEndedEventArgs

Provides data for the SessionEnded event.
using System; namespace Microsoft.Win32 { public class SessionEndedEventArgs : EventArgs { public SessionEndReasons Reason { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemEvents); } } public SessionEndedEventArgs(SessionEndReasons reason) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemEvents); } } }