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