Using delegates in ASP.NET to handle asynchronous operations

When calling BeginInvoke on a delegate, the action is performed in a separate thread. If you call in ASP.NET, does it use the CLR workflow? Or is it using an IIS workflow?

If the latter, then I will need to use the ASP.NET asynchronous pattern to ensure that the action is executed in the workflow of the CLR. But I would rather not do this if the action ends in BeginInvoke.

+5
source share
3 answers

It uses the CLR workflow.

as described in here

-, ASP.NET CLR ( CLR . .NET ).

EDIT:

, , BeginInvoke, , ASP.Net

+6

/ IIS6, IIS7 IIS 7.5.

:

ASP.NET IIS 7.5, IIS 7.0 IIS 6.0

, , .

+1

BeginInvoke . , , , , ASP.NET HTTP-.

, , . " ", , . , , ; ASP.NET WinForms.

+1

All Articles