GSF.ServiceProcess.ServiceHelper.OnServiceResuming C# (CSharp) Method

OnServiceResuming() protected method

Raises the ServiceResuming event.
protected OnServiceResuming ( ) : void
return void
        protected virtual void OnServiceResuming()
        {
            // Notify service event consumers of pending service resume
            if ((object)ServiceResuming != null)
                ServiceResuming(this, EventArgs.Empty);
        }
ServiceHelper