Ricevo il k_BackingField nel mio json restituito dopo aver serializzato un file xml in un oggetto .net c #.
Ho aggiunto DataContract e l'attributo DataMember all'oggetto .net c # ma poi non ottengo nulla su json, lato client.
[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")]
}
Esempio del json restituito:
home: Object
<FirstName>k__BackingField: "Storefront"
<LastName>k__BackingField: "Doors"