PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Using a callback
Using a callback
Débuté par Michael, 24 mar. 2020 14:46 - Aucune réponse
Posté le 24 mars 2020 - 14:46
I am compiling my project to a .NET assembly which is referenced by a c# application. That c# application has a method

string GetToken(string arg1, bool arg2, string arg3);


I want this c# assembly to call into my WL assembly method which takes as an argument a callback (delegate) to the GetToken method so that my WL procedure can callback into the c# assembly as needed.

Any idea how to accomplish this?