GSF.ServiceProcess.ServiceHelper.OnServiceResuming C# (CSharp) 메소드

OnServiceResuming() 보호된 메소드

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