Webclient的DownloadStringCompleted事件处理程序未触发

时间:2012-05-09 17:38:34

标签: c# .net silverlight webclient

我正在创建一个Silverlight仪表板,显示多个设备和网站的状态(向上,向下等)。我正在尝试使用WebClient类连接到一个网站,看看它是否已经启动。但是,DownloadStringCompleted事件处理程序永远不会被触发。这与this post非常相似。

public void LoadPortalStatus(Action<IEnumerable<ChartModel>> success, Action<Exception> fail)
{
    List<NetworkPortalStatusModel> pingedItems = new List<NetworkPortalStatusModel>();

    // Add the status for the portal
    BitmapImage bi = IsPortalActive() 
            ? (new BitmapImage(new Uri("led_green_black-100x100.png", UriKind.Relative))) 
            : (new BitmapImage(new Uri("led_red_black-100x100.png", UriKind.Relative)));

    NetworkPortalStatusModel nsm = new NetworkPortalStatusModel
    {
        Unit = "Portal",
        StatusIndicator = new Image { Width = 100, Height = 100, Source = bi }
    };

    pingedItems.Add(nsm);

    // Send back to the UI thread
    System.Windows.Deployment.Current.Dispatcher.BeginInvoke(_delagateSuccess, new object[] { pingedItems });
}

private bool IsPortalActive()
{
    bool IsActive = false;

    WebClient wc = new WebClient();
    wc.DownloadStringCompleted += (s, e) =>
        {
            if (e.Cancelled) 
            {
                _delagateFail(new Exception("WebClient page download cancelled"));
            }
            else if (e.Error != null)
            {
                _delagateFail(e.Error);
            }
            else
            {
                _portalHtmlResponse = e.Result;
                if (_portalHtmlResponse.Contains("Somerville, Ma"))
                {
                    IsActive = true;
                }
            }
        };
    wc.DownloadStringAsync(new Uri("https://portal.nbic.com/monitor.aspx"));

    return IsActive;
}

有人在这看到问题吗?

1 个答案:

答案 0 :(得分:0)

您试图将异步方法调用强制转换为同步方法 - 它不会起作用,因为该方法将在Web客户端的完成回调有机会执行之前返回。

使用Silverlight,您应该拥抱异步。执行此操作的一种方法是传入一个continuation委托,该委托在下载字符串后运行您想要执行的代码。

相关问题