ฉันได้รับ k_BackingField ใน json ที่ส่งคืนของฉันหลังจากจัดไฟล์ xml เป็นไฟล์. net c #
ฉันได้เพิ่ม DataContract และแอตทริบิวต์ DataMember ลงในวัตถุ. net c # แล้ว แต่ฉันไม่ได้รับอะไรเลยใน 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")]
}
ตัวอย่างของ json ที่ส่งคืน:
home: Object
<FirstName>k__BackingField: "Storefront"
<LastName>k__BackingField: "Doors"