Don't serealize a especific data member , but DESEREALIZE, any chance???
Posted
by CrazyJoe
on Stack Overflow
See other posts from Stack Overflow
or by CrazyJoe
Published on 2010-04-08T17:46:06Z
Indexed on
2010/04/08
22:53 UTC
Read the original article
Hit count: 256
Im using DataContractJsonSerializer to serealize this class:
public class User
{
public string id { get; set; }
public string name { get; set; }
public string password { get; set; }
public string email { get; set; }
public bool is_broker { get; set; }
public string branch_id { get; set; }
public string created_at { get; set; }
public string updated_at { get; set; }
public UserGroup UserGroup {get;set;}
public UserAddress UserAddress { get; set; }
public List<UserContact> UserContact {get; set;}
public User()
{
UserGroup = new UserGroup();
UserAddress = new UserAddress();
UserContact = new List<UserContact>();
}
}
The question is when i serealize to json , the property UserGroup is serealized, but i dont need this, i like to serealize to json whitout UserGroup property.
Obs: When Deserealize it´s all fine to have UserGroup, i need that!!
Any Trick ?????? Thanks!!!
© Stack Overflow or respective owner