带有 DataContract 和 DataMembers 的 TypeBuilder
我正在使用 DataContract 属性和 DataMembers 动态生成动态类型。我已经使用生成类型的反射验证了通过 DataContract 和 DataMember 属性正确生成了类型。
然后,我动态生成一个 ServiceContract 类型,其中包括对所述类型的操作。
但是,当我从客户端添加 ServiceReference 时,我的 DataContract 类型是使用没有属性/DataMembers 的客户端生成的。
知道这里出了什么问题吗?
谢谢。
I'm generating a dynamic type on the fly with a DataContract attribute and DataMembers. I've verified the type is getting generated correctly with DataContract and DataMember attributes using reflection on the generated type.
I then generate a ServiceContract type on the fly that includes operation with said types.
However, when I add a ServiceReference from the client, my DataContract types get generated with the client with no properties/DataMembers.
Any idea what's going wrong here?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里回答:
http: //www.netframeworkdev.com/windows-communication-foundation/datacontractserializer-not-serializingdeserializing-type-built-with-typebuilder-65973.shtml
我的 TypeBuilder 属性的方法标记有 MethodAttributes.Virtual。
DataContractSerializer 的另一个有据可查的出色功能。
Answer Here:
http://www.netframeworkdev.com/windows-communication-foundation/datacontractserializer-not-serializingdeserializing-type-built-with-typebuilder-65973.shtml
My TypeBuilder properties' methods were marked with MethodAttributes.Virtual.
Another great well documented feature of the DataContractSerializer.