6 instantiations of CancellationTokenHelper
System.Web (6)
Hosting\BackgroundWorkScheduler.cs (1)
15
private readonly CancellationTokenHelper _cancellationTokenHelper = new
CancellationTokenHelper
(canceled: false);
Hosting\IIS7WorkerRequest.cs (2)
876
LazyInitializer.EnsureInitialized(ref _clientDisconnectTokenHelper, () => new
CancellationTokenHelper
(canceled: !isClientConnected));
892
CancellationTokenHelper helper = LazyInitializer.EnsureInitialized(ref _clientDisconnectTokenHelper, () => new
CancellationTokenHelper
(canceled: true));
HttpContext.cs (2)
1659
CancellationTokenHelper helper = LazyInitializer.EnsureInitialized(ref _timeoutCancellationTokenHelper, () => new
CancellationTokenHelper
(canceled: false));
1780
CancellationTokenHelper helper = LazyInitializer.EnsureInitialized(ref _timeoutCancellationTokenHelper, () => new
CancellationTokenHelper
(canceled: true));
Util\CancellationTokenHelper.cs (1)
96
CancellationTokenHelper helper = new
CancellationTokenHelper
(false);
13 references to CancellationTokenHelper
System.Web (13)
Hosting\BackgroundWorkScheduler.cs (1)
15
private readonly
CancellationTokenHelper
_cancellationTokenHelper = new CancellationTokenHelper(canceled: false);
Hosting\IIS7WorkerRequest.cs (4)
102
private
CancellationTokenHelper
_clientDisconnectTokenHelper;
231
CancellationTokenHelper
clientDisconnectHelper;
867
_clientDisconnectTokenHelper =
CancellationTokenHelper
.StaticDisposed;
892
CancellationTokenHelper
helper = LazyInitializer.EnsureInitialized(ref _clientDisconnectTokenHelper, () => new CancellationTokenHelper(canceled: true));
HttpContext.cs (5)
101
private
CancellationTokenHelper
_timeoutCancellationTokenHelper; // used for TimedOutToken
1659
CancellationTokenHelper
helper = LazyInitializer.EnsureInitialized(ref _timeoutCancellationTokenHelper, () => new CancellationTokenHelper(canceled: false));
1696
CancellationTokenHelper
helper = LazyInitializer.EnsureInitialized(ref _timeoutCancellationTokenHelper, () =>
CancellationTokenHelper
.StaticDisposed);
1780
CancellationTokenHelper
helper = LazyInitializer.EnsureInitialized(ref _timeoutCancellationTokenHelper, () => new CancellationTokenHelper(canceled: true));
Util\CancellationTokenHelper.cs (3)
25
internal static readonly
CancellationTokenHelper
StaticDisposed = GetStaticDisposedHelper();
95
private static
CancellationTokenHelper
GetStaticDisposedHelper() {
96
CancellationTokenHelper
helper = new CancellationTokenHelper(false);