ServiceBase.OnContinue Method
Assembly: System.ServiceProcess (in system.serviceprocess.dll)
Implement OnContinue to mirror your application's response to OnPause. When you continue the service (either through the Services add-in or programmatically), the OnContinue processing runs, and the service becomes active again.
OnContinue is expected to be overridden when the CanPauseAndContinue property is true.
If CanPauseAndContinue is false, the SCM will not pass Pause or Continue requests to the service, so the OnPause and OnContinue methods will not be called even if they are implemented. In the SCM, the Pause and Continue controls are disabled when CanPauseAndContinue is false.
The following example shows an implementation of the OnContinue method for a service class derived from ServiceBase. This code example is part of a larger example provided for the ServiceBase class.
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.