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

ScheduleProcess() public method

Schedules an existing ServiceProcess for automatic execution.
public ScheduleProcess ( string processName, string scheduleRule ) : bool
processName string Name of the to be scheduled.
scheduleRule string Rule that defines the execution pattern of the .
return bool
        public bool ScheduleProcess(string processName, string scheduleRule)
        {
            return ScheduleProcess(processName, scheduleRule, false);
        }

Same methods

ServiceHelper::ScheduleProcess ( string processName, string scheduleRule, bool updateExistingSchedule ) : bool
ServiceHelper