【xml】异常:不应有 xml xmlns=''。

异常信息:
【xml】异常:不应有 xml xmlns=''。_第1张图片
错误原因:
在对xml进行反序列化时,类名和根节点的名字不一致

解决方法:

namespace Sthxn.Model.weixin
{
    [XmlRoot("xml")]//此处标记根节点名称
    public class ReceiveBase
    {
        public string ToUserName { get; set; }
        public string FromUserName { get; set; }
        public string CreateTime { get; set; }
        public string MsgType { get; set; }
        public string Event { get; set; }
    }
}

你可能感兴趣的:(Exception)