I could not find any applicable documentation about this. What is the default TaskScheduler
when using Azure Functions?
Ideally, I would like it to be based off of threadpool - i.e., TaskScheduler.Default
- but I do not have any certainty in that respect and it affects whether I should stick ConfigureAwait(false)
everywhere or not.
P.S.: There is one code path where impersonation is involved.