如何从Web Service(WCF)公开我的集合

前端之家收集整理的这篇文章主要介绍了如何从Web Service(WCF)公开我的集合前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个自定义集合,我想从WCF Web服务公开.
[DataContract( Name = "MyClass")]
public class MyCollection : IDisposable,List<MyClass> 
{
}

当我使用[DataContract(Name =“MyClass”)]属性它给出错误

Type MyCollection is an invalid collection type since it has DataContractAttribute attribute.

解决方法

您将需要使用 CollectionDataContract属性来处理这个WCF.
[CollectionDataContract] 
public class MyCollection : IDisposable,List<MyClass> 
{
}

渣子

原文链接:https://www.f2er.com/html/231122.html

猜你在找的HTML相关文章