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

OnServiceStarting() protected method

Raises the ServiceStarting event.
protected OnServiceStarting ( string args ) : void
args string Arguments to be sent to event.
return void
        protected virtual void OnServiceStarting(string[] args)
        {
            // Notify service event consumers of pending service start
            if ((object)ServiceStarting != null)
                ServiceStarting(this, new EventArgs<string[]>(args));
        }
ServiceHelper