Windows 运行时 - 如何验证 C# 中是否有良好的互联网连接

本文关键字:是否 连接 互联网 运行时 何验证 验证 Windows | 更新日期: 2023-09-27 17:56:05

我正在尝试创建一个Windows应用商店应用程序,该应用程序执行多个需要互联网连接的配置文件。我的代码通过将数据存储在临时 SQLite 数据库中来处理没有互联网连接,但仅在没有互联网连接时。像这样:

    // C#
    public bool isInternetConnected()
    {
        ConnectionProfile conn = NetworkInformation.GetInternetConnectionProfile();
        bool isInternet = conn != null && conn.GetNetworkConnectivityLevel() == NetworkConnectivityLevel.InternetAccess;
        return isInternet;
    }

现在,我的问题是当我的互联网连接不好时。我的任务将超时,我将不得不处理超时或修改此方法。

有没有人有处理这个问题的好方法????

Windows 运行时 - 如何验证 C# 中是否有良好的互联网连接

试试这个:如果结果在 40 ~ 120 之间,则延迟良好,您的连接良好:)

用法:

PingTimeAverage("stackoverflow.com", 4);

实现:

public static double PingTimeAverage(string host, int echoNum)
{
    long totalTime = 0;
    int timeout = 120;
    Ping pingSender = new Ping ();
    for (int i = 0; i < echoNum; i++)
    { 
        PingReply reply = pingSender.Send (host, timeout);
        if (reply.Status == IPStatus.Success)
        {
            totalTime += reply.RoundtripTime;
        }
    }
    return totalTime / echoNum;
}

如果您使用带有例外的try语句,则它应该能够在没有互联网连接时处理该操作。没有互联网连接可能是例外。

try 
{
    // Do not initialize this variable here.
}
catch
{
}

我认为在这种情况下使用 try-catch 可能是处理互联网中断时最有效的方法。

我会尝试这个,也许会重复调用它并针对多个测试 URI:

public static async Task<bool> CheckIfWebConnectionIsGoodAsync(TimeSpan? minResponseTime, Uri testUri)
{
    if (minResponseTime == null)
    {
        minResponseTime = TimeSpan.FromSeconds(0.3);
    }
    if (testUri == null)
    {
        testUri = new Uri("http://www.google.com");
    }
    var client = new HttpClient();
    var cts = new CancellationTokenSource(minResponseTime.Value);
    try
    {
        var task = client.GetAsync(testUri).AsTask(cts.Token);
        await task;
        if (task.IsCanceled)
            return false;
        return true;
    }
    catch (Exception)
    {
        return false;
    }
}