PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Using a callback
Using a callback
Iniciado por michael, 24,mar. 2020 14:44 - No hay respuesta
Publicado el 24,marzo 2020 - 14:44
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?