本文介绍了在U/I线程中处理了GetDataComplete?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以假定始终在U/I线程中调用"GetDataComplete"的异步Web服务完成事件吗?在这种情况下,下面的代码是多余的.或者对于可能从另一个线程调用的方案很有帮助.

Can I assume that "GetDataComplete"''s async web service completed event is always invoked in the U/I thread? In which case the code below is redundant. Or is that good defense for scenarious where it may call from another thread.

var svc = new ServiceTest.Service1Client();
svc.GetDataCompleted += (o, evt) =>
{
    if (null == evt.Error)
    {
        Dispatcher.BeginInvoke(() =>
                                   {
                                       label1.Content
                                           = evt.Result;
                                   }
            );
    }
};



谢谢!



Thanks!

推荐答案



这篇关于在U/I线程中处理了GetDataComplete?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 06:57