paypal / ipn-code-samples

Other
562 stars 486 forks source link

c# sample recommends Task.Run in asp.net #129

Open gunnim opened 6 years ago

gunnim commented 6 years ago

Issue description

Fire and forget tasks are widely discouraged as asp.net can abruptly halt them when the request has been completely process. (f.x. here and here)

HostingEnvironment.QueueBackgroundWorkItem seems to be the suggested alternative

overint commented 6 years ago

I'm not farmiliar with ASP, you are welcome to submit a PR if you are able to fix it.