You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am executing some script. It executes a function , for instance,
executeScript1(param1, param2);
Now, in executeScript1, I call a C# function, which again creates a new instance of ScriptEngine and calls some other function, say executeScript2(param1);
So, while executing executeScript2(param1), how will I come to know in C#, that I am already executing executeScript1 or running a nested execution?
The text was updated successfully, but these errors were encountered:
Hi,
I am executing some script. It executes a function , for instance,
executeScript1(param1, param2);
Now, in executeScript1, I call a C# function, which again creates a new instance of ScriptEngine and calls some other function, say executeScript2(param1);
So, while executing executeScript2(param1), how will I come to know in C#, that I am already executing executeScript1 or running a nested execution?
The text was updated successfully, but these errors were encountered: