GSF.ServiceProcess.ServiceHelper.AddProcess C# (CSharp) Метод

AddProcess() публичный Метод

Adds a new ServiceProcess to the ServiceHelper.
public AddProcess ( object[]>.Action processExecutionMethod, string processName ) : bool
processExecutionMethod object[]>.Action The to be invoked the is started.
processName string Name of the being added.
Результат bool
        public bool AddProcess(Action<string, object[]> processExecutionMethod, string processName)
        {
            return AddProcess(processExecutionMethod, processName, null);
        }

Same methods

ServiceHelper::AddProcess ( object[]>.Action processExecutionMethod, string processName, object processArguments ) : bool
ServiceHelper