November 2018
Intermediate to advanced
424 pages
10h 55m
English
Perform the following steps:
#r "Microsoft.Azure.WebJobs.Extensions.DurableTask" #r "Microsoft.WindowsAzure.Storage" using Microsoft.WindowsAzure.Storage.Blob; public static async Task<int> Run(DurableActivityContext customerContext,ILogger log) { int ncustomerId = Convert.ToInt32 (customerContext.GetInput<string>()); Random objRandom = new Random(Guid.NewGuid().GetHashCode()); int nRandomValue = objRandom.Next(50000); for(int nProcessIndex = 0;nProcessIndex<=nRandomValue; ...