<PackageReference Include="Microsoft.Win32.SystemEvents" Version="9.0.10" />

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); } } }