|   | ServiceProcess Constructor | 
        
        
        
        Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic ServiceProcess(
	Action<string, Object[]> executionMethod,
	string name,
	params Object[] arguments
)
Public Sub New ( 
	executionMethod As Action(Of String, Object()),
	name As String,
	ParamArray arguments As Object()
)
public:
ServiceProcess(
	Action<String^, array<Object^>^>^ executionMethod, 
	String^ name, 
	... array<Object^>^ arguments
)
new : 
        executionMethod : Action<string, Object[]> * 
        name : string * 
        arguments : Object[] -> ServiceProcessGSF.ServiceProcess.ServiceProcess = function(executionMethod, name, ... arguments);
Parameters
- executionMethod  ActionString, Object
- Delegate that gets invoked when Start is called.
- name  String
- Name of the ServiceProcess.
- arguments  Object
- Arguments to be passed in to the executionMethod.
 See Also
See Also