Is there an equivalent to F# Async.StartAsTask that returns Async and lets you pass in a cancellation token?
Summary The question revolves around finding an equivalent to F# Async.StartAsTask that returns Async<‘T> and allows passing a cancellation token. This is necessary for canceling a child computation within an async computation expression without affecting the ambient token. Root Cause The root cause of this issue is the lack of a direct method in F# … Read more