How to check if one HTTP client is still connected to the server in asp.net core?

1.1k views Asked by At

I wanna know if there is a way to check if one client is still connected to asp.net core server?

If I understand well, in the standard asp.net we can do this using this property, and I'm asking if we can do so in asp.net core?

1

There are 1 answers

0
DevDev On

As mentionned by @Tratcher, we can check the RequestAborted cancellation token.