Methode in einer asynchronen Aufgabe aufrufen
In einer asynchronen Aufgabe können Sie eine Methode mit Parametern aufrufen.
Syntaxbeispiel
private LongRunningTask asynchronousTask; [ExportMethod] public void Method1() { IUAVariable Var1 asynchronousTask = new LongRunningTask(() => Logic1(Var1), LogicObject); } public void Logic1(IUAVariable Var1) { // Insert code to be run }
Rückmeldung geben