1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.TwinCat
- {
- public class BeckhoffDelegate
- {
-
-
-
-
-
- public delegate void OnUpdateModuleVariableValue(string variableName, object value);
-
-
-
-
-
- public delegate void OnUpdateVariableCounterValue(string variableName, int counter);
-
-
-
-
-
-
- public delegate void OnModuleUpdateVariableValue(string moduleName,string variableName, object value);
- }
- }
|