I am getting the k_BackingField in my returned json after serializing a xml file to a .net c# object.
I've added the DataContract and the DataMember attribute to the .net c# object but then I get nothing on the json, client end.
[XmlRoot("person")]
[Serializable]
public class LinkedIn
{
[XmlElement("id")]
public string ID { get; set; }
[XmlElement("industry")]
public string Industry { get; set; }
[XmlElement("first-name")]
public string FirstName { get; set; }
[XmlElement("last-name")]
public string LastName { get; set; }
[XmlElement("headline")]
}
Example of the returned json:
home: Object
<FirstName>k__BackingField: "Storefront"
<LastName>k__BackingField: "Doors"
Remove [Serializable]
from your class