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