C# object to json but some properties need to hide..

Jan 22 2015 1:05 AM
I am having a class named link
public class Link
{
   public string rel { get; set; }
   public string href { get; set; }
   public string name { get; set; }
}
 
Using this class i have to create an json file ("JsonConvert.SerializeObject(Link)")  but for some cases i dont want to hide name property and show only rel and href properties and other case i want show all of the 3 properties.. 
 
can you please suggest me what to do for this.. 

Answers (2)