At.FF.Krems.FullscreenBrowser.PowerManagement.Hibernate C# (CSharp) Method

Hibernate() public method

Hibernate system.
public Hibernate ( bool force = false ) : void
force bool Inform system to force operation.
return void
        public void Hibernate(bool force = false)
        {
            // call hibernate
            if (!CheckEntryPoint("powrprof.dll", "SetSuspendState"))
            {
                throw new PlatformNotSupportedException("'SetSuspendState' method missing from 'powrprof.dll'!");
            }

            NativeMethods.SetSuspendState(1, force ? 1 : 0, 0);
        }