不会为 XElement 属性生成客户端代码

发布于 2024-12-10 23:19:35 字数 316 浏览 0 评论 0原文

我的域服务具有调用操作方法并返回自定义 输入“用户”。这个类有很多属性,比如String, 整数、布尔值、XElement。当我重建解决方案以生成 客户端代理,它为客户端中的 User 类生成代码 对于除 XElement 之外的所有属性。解决这个问题的方法是什么? RIA 不会为 XNode 或 XElement 类型生成任何代码吗?应该 这些元素要转换为字符串吗?有没有解决这个问题的方法 错误?

我正在使用 VS2010 SP1、.Net Framework 4、WCF RIA、Silverlight 5。

My domain service has invoke operation method and returns a custom
type say 'User'. This class has many properties such as String,
Integer, Boolean, XElement. When I rebuild the solution to generate
client-side proxy, it generates code for the class User in the client
for all the properties, except for XElement. What is the fix for this?
Will RIA not generate any code for XNode or XElement types? Should
these elements be converted to String? Are there any fixes for this
error?

I'm using VS2010 SP1, .Net Framework 4, WCF RIA, Silverlight 5.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长梦不多时 2024-12-17 23:19:35

根据 Silverlight DataContract 文档,您可以使用 DataContract/DataMember 属性将您的类标记为选择加入,也可以选择退出并仅依赖序列化公共范围类成员。您需要显示您遇到问题的类的代码以获得更好的建议。

According to the Silverlight DataContract documentation, you can mark your classes as either opt-in using the DataContract/DataMember attributes or opt-out and rely on only serializing public scope class members. You need to show the code of the class you're having problems with to get better suggestions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文