Is there another http request that has to be issued?
How does the browser notify the server of abandoned/cancelled request?
Do I need to code my client-side for that to work?
This is my ASP MVC Controller method:
[HttpGet("/get")]
public async Task<string> Get(CancellationToken cancellationToken)
{
//propagate CancellationToken to Entity Framework
}