|
ServiceProcess Constructor
|
Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.248-beta
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[] -> ServiceProcess
GSF.ServiceProcess.ServiceProcess = function(executionMethod, name, ... arguments);
View SourceParameters
- 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