I intend to call async version for fire & forget scenarios e.g. 1. log writing in Azure Table Storage 2. Pushing a message to service bus.
I do not intend to block or await the external api call. However Web API throws following error:
Seems the IIS request thread has to remain active. Even though we're not block api call.
Is there any way we could let the external API continue its operation, using Async/Await?