Unexpected node type Element
问题 I have the following XML : <Envelope> <Body> <RESULT> <SUCCESS>TRUE</SUCCESS> <RecipientId>9876543210</RecipientId> <ORGANIZATION_ID>12345-67890-b9e6bcd68d4fb511170ab3fcff55179d</ORGANIZATION_ID> </RESULT> </Body> </Envelope> Which I'm trying to deserialize to: [XmlRoot(ElementName = "Envelope")] public class Add_Recipent_response { public string Body { get; set; } public string RESULT { get; set; } public string SUCCESS { get; set; } public string RecipientId { get; set; } public string