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

RemoveScheduledProcess() public method

Removes an existing ServiceProcess from the ServiceHelper that is scheduled for automatic execution.
public RemoveScheduledProcess ( string processName ) : bool
processName string Name of the scheduled to be removed.
return bool
        public bool RemoveScheduledProcess(string processName)
        {
            if (UnscheduleProcess(processName))
                return RemoveProcess(processName);

            return false;
        }
ServiceHelper