XmlSerializer 实现序列化CDATA

时间:2018-05-03 21:53:26   收藏:0   阅读:297
     [XmlIgnore]
        public string GuestRemarks { get; set; }

        [XmlElement("GuestRemarks")]
        public XmlNode[] Nodes
        {
            get
            {
                var dom = new XmlDocument();
                return new XmlNode[] {dom.CreateCDataSection(this.GuestRemarks)};
            }
            set
            {
                if (value == null)
                {
                    this.GuestRemarks = null;
                    return;
                }

                if (value.Length != 1)
                    throw new InvalidOperationException("Invalid array.");
                var content = value[0];
                if (null == content)
                    throw new InvalidOperationException("Node is null.");
                this.GuestRemarks = content.Value;
            }
        }

 

原文:https://www.cnblogs.com/ShaYeBlog/p/8987319.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!