.NET 网络连接验证的最快方法
在 .NET 应用程序开发中,确定网络连接验证的最佳技术至关重要。在需要访问互联网的场景中,可靠且高效的机制至关重要。本文提供了一种解决此需求的有效方案。
使用可靠的连接检查
为了确保可靠的连接测试,请考虑采用以下代码片段:
<code class="language-csharp">public static bool CheckForInternetConnection(int timeoutMs = 10000, string url = null) { try { url ??= CultureInfo.InstalledUICulture switch { { Name: var n } when n.StartsWith("fa") => // 伊朗 "http://www.aparat.com", { Name: var n } when n.StartsWith("zh") => // 中国 "http://www.baidu.com", _ => "http://www.gstatic.com/generate_204", }; var request = (HttpWebRequest)WebRequest.Create(url); request.KeepAlive = false; request.Timeout = timeoutMs; using (var response = (HttpWebResponse)request.GetResponse()) return true; } catch { return false; } }</code>
以上是我如何快速验证.NET中的网络连接?的详细内容。更多信息请关注PHP中文网其他相关文章!