Closed AvaGanesh closed 5 months ago
Edge.js only supports C# methods with the following signature
public async Task<object> MyMethod(dynamic input)
{
//return results sync/async;
}
You need to wrap your method in this signature and pass parameters as desribed here https://github.com/agracio/edge-js?tab=readme-ov-file#using-compiled-assembly.
Any new Issues should be raised in https://github.com/agracio/edge-js
Hi All, I have to call a function inside a DLL file and retrieve some data, I am having trouble while passing parameters.
js code
when the above function is error it throws
System.Reflection.TargetParameterCountException
Is there a different way to pass
out
params? Any help on the above issue is much appreciated.-Regards