During my application's Application_Start()
event I want to fire off a HTTP request to an address. I absolutely do not want any cost incurred by Application_Start()
and for App Start to be delayed in any fashion. I do not care about the response from the request.
What is the most correct method for firing this request in a completely non-blocking fashion?