6

可能重复:
为什么 ManualResetEvent 无法在使用 Silverlight 4 的此同步调用中工作?

我在 MainPage.Xaml.cs 中有以下代码

 ManualResetEvent wait = new ManualResetEvent(false);
 Service1Client wcf = new Service1Client();
 wcf.DoWorkCompleted += (o, ev) =>
 {
   int s = (int)ev.Result;
   wait.Set();
 };
 wcf.DoWorkAsync();
 wait.WaitOne();

//My other part of code where I'd like the value of `int s`.
....

Service1.svc.cs 的代码如下。

public class Service1 : IService1
{
  public int DoWork()
  {
    return 5;
  }
}

直到DoWork完成,我希望我的代码等待,所以我写了这段代码。虽然在WaitOne指令之后(Service1.svc.cs)方法DoWork()根本不会被调用。应用程序将留在那里只是不做任何事情。我以前在 SilverLight 4 的另一台机器上做过这个,它按预期工作。现在我正在使用 SilverLight 3。

4

1 回答 1

0

您可能通过调用wait.WaitOne().

异步操作完成后,它会尝试DoWorkCompleted通过 UI 调度程序调用 。虽然它会成功地将调用排队,但它永远不会出队,因为 UI 线程在WaitOne().

在我看来,您应该避免这种解决方法,而只进行异步调用。

于 2012-10-24T09:02:33.920 回答