August 2017
Intermediate to advanced
332 pages
8h 54m
English
#r "Microsoft.Azure.WebJobs.Extensions.DurableTask" public static async Task<List<string>> Run(DurableOrchestrationContext context) { var outputs = new List<string>(); outputs.Add(await context.CallFunctionAsync<string> ("ConveyGreeting", "Welcome Cookbook Readers")); return outputs; }
{ "bindings": [ { "name": "context", "type": "orchestrationTrigger", "direction": "in" } ], "disabled": false }