忽略响应资源类中的属性 - Openrasta

发布于 2024-11-28 07:06:22 字数 341 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

与之呼应 2024-12-05 07:06:23

由于 [XmlIgnore] 不起作用,我猜测您正在使用 JsonXmlDataContract 编解码器。它们基于 DataContractSerializer,在这种情况下,控制序列化的机制是将类型标记为 [DataContract],此时包含变为 选择加入而不是自动,即

[DataContract]
public class User
{
  public  int Id { get; set; }
  [DataMember]
  public string Name { get; set; }
  [DataMember]
  public string Code { get; set; }
}

Since [XmlIgnore] isn't working, I am guessing you are using either the Json or XmlDataContract codecs. These are based on DataContractSerializer, 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.

[DataContract]
public class User
{
  public  int Id { get; set; }
  [DataMember]
  public string Name { get; set; }
  [DataMember]
  public string Code { get; set; }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文