Amido.Testing.WebApi.Request.TestTasks.Wait C# (CSharp) Method

Wait() public method

Forces the main thread to wait until all tasks in the collection have completed.
public Wait ( ) : void
return void
        public void Wait()
        {
            Task.WaitAll(Tasks.ToArray());
        }
    }