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?

link|improve this question

Which serialization codec? json? xml? xmldatacontract? – Marc Gravell Aug 8 '11 at 7:24
@Marc: Both json and xml – JPReddy Aug 8 '11 at 7:32
which xml ;p it supports 2, and it matters... – Marc Gravell Aug 8 '11 at 7:34
sorry for not to be specific. This is not xmlserializer, I'm using XmlDataContract. – JPReddy Aug 8 '11 at 7:44
feedback

1 Answer

up vote 4 down vote accepted

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; }
}
link|improve this answer
Perfect, it works. – JPReddy Aug 8 '11 at 7:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.