D
DotNetMania
when i want to know internet connection i use below code ..
WebRequest Request = WebRequest.Create(new Uri( HOME ));
if (Request.GetResponse().ToString().Length > 0)
{
result = true;
}
but this code is so delay..
are there the other method to solve this problem..?
WebRequest Request = WebRequest.Create(new Uri( HOME ));
if (Request.GetResponse().ToString().Length > 0)
{
result = true;
}
but this code is so delay..
are there the other method to solve this problem..?