ASP.NET Thread Switching

I read somewhere (I can’t remember where) that in some cases it is possible that the ASP.NET response should be switched when processing between threadpool threads - sometimes in the middle of an executable method.

It's true? If so, how is this achieved? If not, what did the author possibly mean by that?

+3
source share
1 answer

In the middle of the execution method? I have never heard of this ... But in the middle of the executable page; Yes:

This can happen when performing an asynchronous operation using either AddOnPreRenderCompleteAsync (...) or RegisterAsyncTask (...).

, . .

+3

All Articles