GSF.ServiceProcess.ServiceHelper.OnServiceResuming C# (CSharp) Méthode

OnServiceResuming() protected méthode

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