AsposeVisualStudioPluginPdf.Core.AsposeComponentsManager.isIneternetConnected C# (CSharp) Method

isIneternetConnected() public static method

public static isIneternetConnected ( ) : bool
return bool
        public static bool isIneternetConnected()
        {
            try
            {
                System.Net.IPHostEntry ipHostEntry = System.Net.Dns.GetHostEntry("www.google.com");
            }
            catch (SocketException)
            {
                return false;
            }
            return true;
        }