我有 WCF 服务
当我在我的 Windows Phone 应用程序中“添加服务引用”时,一切看起来都很好,但方法返回无效。例如,我在 WPF 应用程序中测试了这个服务器,它可以工作并返回我需要的东西,但在 wp 7/8 应用程序中没有。当然,这个 WCF 的基本功能是返回数据,所以 void 方法对我来说完全没用。
我有 WCF 服务
当我在我的 Windows Phone 应用程序中“添加服务引用”时,一切看起来都很好,但方法返回无效。例如,我在 WPF 应用程序中测试了这个服务器,它可以工作并返回我需要的东西,但在 wp 7/8 应用程序中没有。当然,这个 WCF 的基本功能是返回数据,所以 void 方法对我来说完全没用。
You can use service Async
and Completed
events.Service will return data in completed
event like
ServiceReference1.Service1Client clientForTesting = new ServiceReference1.Service1Client();
clientForTesting.GetDataCompleted += new EventHandler<ServiceReference1.GetDataCompletedEventArgs>(TestCallback);
clientForTesting.GetDataAsync(testValue);