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

OnServiceStarted() protected method

Raises the ServiceStarted event.
protected OnServiceStarted ( ) : void
return void
        protected virtual void OnServiceStarted()
        {
            // Notify all remote clients that might possibly be connected at of service start (not likely)
            SendServiceStateChangedResponse(ServiceState.Started);

            // Notify service event consumers that service has started
            if ((object)ServiceStarted != null)
                ServiceStarted(this, EventArgs.Empty);
        }
ServiceHelper