I have a DTO class which I Serialize
Json.Serialize(MyClass)
How can I exclude a public property of it?
(It has to be public, as I use it in my code somewhere else)
|
You can put a ScriptIgnore attribute on the members that shouldn't be serialized. See http://www.creave.dk/post/2009/10/07/Excluding-properties-from-being-serialized-in-ASPNET-MVC-JsonResult.aspx for an example. PS. Don't forget to add a reference to "System.Web.Extensions" for this to work |
||||
|
|
|
You can use
Reference here In this case the Id and then name will only be serialized |
|||
|
|
IgnoreDataMemberScriptIgnoreJsonIgnoredepending on the serializer you use – L.B Apr 16 '12 at 6:46