c# XmlSerializer为字段添加属性

本文关键字:添加 属性 字段 XmlSerializer | 更新日期: 2023-09-27 18:08:38

我想添加一个属于字段的自定义属性

目标是得到以下XML:
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>class1</name>
    </assembly>
    <members>
      <member name="P:class1.clsPerson.isAlive">
            <Element>
            isAlive
            </Element>
            <Description>
            Whether the object is alive or dead
            </Description>
            <StandardValue>
            false
            </StandardValue>
        </member>
    </members>
</doc>

我现在拥有的:

 using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 using System.Xml.Serialization;
 namespace class1
 {
     public class clsPerson
     {
         [XmlElement(ElementName="isAlive")]
         [Description("Whether the object is alive or dead")]
         [StandardValue(false)]
         public bool isAlive { get; set; }
     }
     class Program
     {
         static void Main(string[] args)
         {
             clsPerson p = new clsPerson();
             p.isAlive = true;
             System.Xml.Serialization.XmlSerializer x = new System.Xml.Serialization.XmlSerializer(p.GetType());
             x.Serialize(Console.Out, p);
             Console.WriteLine();
             Console.ReadLine();
         }
     }
 }

我当前的Annotation类:

using System;
namespace class1
{
    internal class StandardValueAttribute : Attribute
    {
        public readonly object DefaultValue;
        public StandardValueAttribute(Object defaultValue)
        {
            this.DefaultValue = defaultValue;
        }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace class1
{
    internal class DescriptionAttribute : Attribute
    {
        private string v;
        public DescriptionAttribute(string v)
        {
            this.v = v;
        }
    }
}

如何将自定义属性(如Description和StandardValue)添加到XMLSerializer?

c# XmlSerializer为字段添加属性

看起来你想重新发明轮子。如果您试图导出代码文档,我建议您使用内置功能:

https://msdn.microsoft.com/en-us/library/b2s063f7.aspx

然后生成XML文档文件,您甚至可以在智能感知

中使用它们

XMLSerializer将只存储实例的内容。

使用xml Linq

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;
namespace ConsoleApplication14
{
    class Program
    {
        const string FILENAME = @"c:'temp'test.xml";
        static void Main(string[] args)
        {
            XDocument doc = XDocument.Load(FILENAME);
            string name = "P:class1.clsPerson.isAlive";
            XElement person = doc.Descendants("member").Where(x => (string)x.Attribute("name") == name).FirstOrDefault();
            person.Add(new object[] {
                new XElement("Description", "Whether the object is alive or dead"),
                new XElement("StandardValue", false)
            });
        }
    }
}