|   | ServiceHelperAddScheduledProcess(ActionString, Object, String, Object, String) Method | 
        
        
        
        Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic bool AddScheduledProcess(
	Action<string, Object[]> processExecutionMethod,
	string processName,
	Object[] processArguments,
	string processSchedule
)
Public Function AddScheduledProcess ( 
	processExecutionMethod As Action(Of String, Object()),
	processName As String,
	processArguments As Object(),
	processSchedule As String
) As Boolean
public:
bool AddScheduledProcess(
	Action<String^, array<Object^>^>^ processExecutionMethod, 
	String^ processName, 
	array<Object^>^ processArguments, 
	String^ processSchedule
)
member AddScheduledProcess : 
        processExecutionMethod : Action<string, Object[]> * 
        processName : string * 
        processArguments : Object[] * 
        processSchedule : string -> bool function AddScheduledProcess(processExecutionMethod, processName, processArguments, processSchedule);
Parameters
- processExecutionMethod  ActionString, Object
- The Delegate to be invoked the ServiceProcess is started.
- processName  String
- Name of the ServiceProcess being added.
- processArguments  Object
- Arguments to be passed in to the processExecutionMethod during execution.
- processSchedule  String
- Schedule for the execution of the ServiceProcess.
Return Value
Booleantrue if the 
ServiceProcess does not exist already and is added and scheduled, otherwise false.
 See Also
See Also