我在 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。