1 instantiation of BackgroundWorkScheduler
System.Web (1)
Hosting\HostingEnvironment.cs (1)
1193BackgroundWorkScheduler newlyCreatedScheduler = new BackgroundWorkScheduler(UnregisterObject, Misc.WriteUnhandledExceptionToEventLog);
5 references to BackgroundWorkScheduler
System.Web (5)
Hosting\BackgroundWorkScheduler.cs (2)
17private readonly Action<BackgroundWorkScheduler> _unregisterCallback; 21internal BackgroundWorkScheduler(Action<BackgroundWorkScheduler> unregisterCallback, Action<AppDomain, Exception> logCallback, Action workItemCompleteCallback = null) {
Hosting\HostingEnvironment.cs (3)
142private BackgroundWorkScheduler _backgroundWorkScheduler = null; // created on demand 1189BackgroundWorkScheduler scheduler = Volatile.Read(ref _backgroundWorkScheduler); 1193BackgroundWorkScheduler newlyCreatedScheduler = new BackgroundWorkScheduler(UnregisterObject, Misc.WriteUnhandledExceptionToEventLog);