2 implementations of IPageAsyncTask
System.Web (2)
UI\PageAsyncTaskApm.cs (1)
14
internal sealed class PageAsyncTaskApm :
IPageAsyncTask
{
UI\PageAsyncTaskTap.cs (1)
14
internal sealed class PageAsyncTaskTap :
IPageAsyncTask
{
7 references to IPageAsyncTask
System.Web (7)
UI\Page.cs (3)
5743
IPageAsyncTask
asyncTask = (task.TaskHandler != null)
5744
? (
IPageAsyncTask
)new PageAsyncTaskTap(task.TaskHandler)
5745
: (
IPageAsyncTask
)new PageAsyncTaskApm(task.BeginHandler, task.EndHandler, task.State);
UI\PageAsyncTaskManager.cs (4)
19
private readonly Queue<
IPageAsyncTask
> _registeredTasks = new Queue<
IPageAsyncTask
>();
21
public void EnqueueTask(
IPageAsyncTask
task) {
42
IPageAsyncTask
task = _registeredTasks.Dequeue();