November 2018
Intermediate to advanced
424 pages
10h 55m
English
Perform the following steps:

#r "Microsoft.Azure.WebJobs.Extensions.DurableTask" public static string Run(string name) { return $"Hello Welcome Cookbook Readers!"; }
{ "bindings": [ { "name": "name", "type": "activityTrigger", "direction": "in" } ] }
In this recipe, ...