本文介绍了异步服务操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个现有的Silverlight项目并使用大量的WCF。问题是我不知道开头的故事。假设我创建了一个WCF,然后向项目添加服务引用。我发现有很多代码,比如
System.IAsyncResult BeginGetCurrentDateTime(System.AsyncCallback callback,object asyncState);
我的问题是系统如何生成这些代码中的代码? silverlight
会自动 生成这些异步代码吗?
解决方案
I am working on an existing silverlight project and use a lot of WCF. The thing is that I don't know the story of the beginning. Say I create a WCF then add service reference to a project. I find that there are many code such as
System.IAsyncResult BeginGetCurrentDateTime(System.AsyncCallback callback, object asyncState);
My question is how the system generate these code underhood? Does the silverlightautomatically generate these async code?
解决方案
这篇关于异步服务操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!