3 references to ContinueWith
Microsoft.AspNetCore.Components.Tests (1)
RendererTest.cs (1)
3531
var awaitableTask = render1TCS.Task.
ContinueWith
(_ => Task.Delay(1000)).Unwrap();
Microsoft.AspNetCore.OutputCaching.Tests (1)
CachedResponseBodyTests.cs (1)
36
var copyTask = RecyclableReadOnlySequenceSegment.CopyToAsync(body, pipe.Writer, cts.Token).AsTask().
ContinueWith
(t => pipe.Writer.CompleteAsync(t.Exception));
Microsoft.AspNetCore.ResponseCaching.Tests (1)
CachedResponseBodyTests.cs (1)
44
var copyTask = body.CopyToAsync(pipe.Writer, cts.Token).
ContinueWith
(_ => pipe.Writer.CompleteAsync());