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