WCF 在没有“设置"的属性上窒息.任何解决方法?

编程入门 行业动态 更新时间:2024-10-20 11:51:37
本文介绍了WCF 在没有“设置"的属性上窒息.任何解决方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一些作为服务方法的结果传递的类,并且该类有一个 get-only 属性:

I have some class that I'm passing as a result of a service method, and that class has a get-only property:

[DataContract] public class ErrorBase { [DataMember] public virtual string Message { get { return ""; } } }

我在服务端遇到异常:

System.Runtime.Serialization.InvalidDataContractException:未设置'MyNamespace.ErrorBase' 类型中属性 'Message' 的方法.

System.Runtime.Serialization.InvalidDataContractException: No set method for property 'Message' in type 'MyNamespace.ErrorBase'.

我必须将此属性作为唯一的getter,我不能允许用户为其分配值.我可以使用任何解决方法吗?还是我缺少一些额外的属性?

I have to have this property as only getter, I can't allow users to assign it a value. Any workaround I could use? Or am I missing some additional attribute?

推荐答案

给 Message 一个公共 getter 但受保护的 setter,这样只有子类(和 DataContractSerializer,因为它作弊 :)可以修改值.

Give Message a public getter but protected setter, so that only subclasses (and the DataContractSerializer, because it cheats :) may modify the value.

更多推荐

WCF 在没有“设置"的属性上窒息.任何解决方法?

本文发布于:2023-05-28 12:31:02,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/320950.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:词库加载错误:Could not find file 'D:\淘小白 高铁采集器win10\Configuration\Dict_Sto

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!