I have written 3 functions as follows
In [3] function, I will call [2] functi
I know we have Durable Functions but I call my functions like a normal static method and it works, here an example :
public static class HelloWorld
{
[FunctionName("HelloWorld")]
public static string Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = null)] HttpRequest req, ILogger log)
{
return "Hello World";
}
}
public static class HelloWorldCall
{
[FunctionName("HelloWorldCall")]
public static string Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = null)] HttpRequest req, ILogger log)
{
var caller = HelloWorld.Run(req, log);
return caller;
}
}