silverlight中WCF不能传递List<string>

2020-11-22 18:31

阅读:540

标签:blog   string   2014   http   cti   com   window   .net   不同的   new   view   

SL:
List Dishes = ...;
ServiceReference1.Service1Client myClient = new Service1Client();
myClient.MakeOrderAsync(Dishes);

WEB:
[OperationContract]
public Boolean MakeOrder(List dishes)
{
   ...
   return true;
}  

 

提示:

错误 6 与“OrderingDishs.ServiceReference1.Service1Client.MakeOrderAsync(System.Collections.ObjectModel.ObservableCollection)”最匹配的重载方法具有一些无效参数 E:\C#.net\Silverlight初探\OrderingDishs\OrderingDishs\ViewModels\MianWindowViewModel.cs 97 13 OrderingDishs

错误 7 参数 1: 无法从“System.Collections.Generic.List”转换为“System.Collections.ObjectModel.ObservableCollection” E:\C#.net\Silverlight初探\OrderingDishs\OrderingDishs\ViewModels\MianWindowViewModel.cs 97 37 OrderingDishs

这是因为SL的WEB服务端.net CLR和客户端.net是两个不同的框架,解决:
mamicode.com,搜素材
mamicode.com,搜素材

silverlight中WCF不能传递List,搜素材,soscw.com

silverlight中WCF不能传递List

标签:blog   string   2014   http   cti   com   window   .net   不同的   new   view   

原文地址:http://www.cnblogs.com/aswordok/p/3702753.html


评论


亲,登录后才可以留言!