ConfigureAwait — context capture control.
1// Default — captures context2await Task.Delay(1000);3// Continues on UI thread4 5// No capture6await Task.Delay(1000).ConfigureAwait(false);7// Continues on thread pool