Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does Response.IsClientConnected work under the covers?

Tags:

asp.net

How does Response.IsClientConnected work under the covers?

like image 733
Krishna Kumar Avatar asked Nov 14 '22 14:11

Krishna Kumar


1 Answers

A good way to find out is by using .NET Reflector and examining the Response.IsClientConnected property. It allows you to decompile and anaylze .NET assemblies. It's an essential tool in the .NET developers arsenal.

like image 186
Phaedrus Avatar answered Dec 14 '22 23:12

Phaedrus