忽略响应资源类中的属性 - Openrasta
我正在使用 Openrasta 框架。我有一个简单的 POCO,它在我的 API 中使用,它将作为 ResponseResource 发送给客户端。它如下所示:
Public class User
{
Public int Id { get; set; }
Public string Name { get; set; }
Public string Code { get; set; }
}
当向用户发送响应时,我不想将属性“Id”发送回用户。如何使 openrasta 序列化程序忽略此属性?我尝试为此属性添加 XmlIgnore 属性,但它不起作用。
有什么想法吗?
I'm using Openrasta framework. I've simple POCO which is used in my API and this will be sent as ResponseResource to client. It looks like below:
Public class User
{
Public int Id { get; set; }
Public string Name { get; set; }
Public string Code { get; set; }
}
When sending response to user I dont want to send property "Id" back to the user. How can I make openrasta serialzers to ignore this property? I tried putting XmlIgnore attribute for this property but it didn't work.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于
[XmlIgnore]
不起作用,我猜测您正在使用 Json 或 XmlDataContract 编解码器。它们基于DataContractSerializer
,在这种情况下,控制序列化的机制是将类型标记为[DataContract]
,此时包含变为 选择加入而不是自动,即Since
[XmlIgnore]
isn't working, I am guessing you are using either the Json or XmlDataContract codecs. These are based onDataContractSerializer
, in which case the mechanism to control the serialization is to mark the type as[DataContract]
, at which point inclusion becomes opt in rather than automatic, i.e.