XML Serialize boolean as 0 and 1

前端 未结 3 1556
我在风中等你
我在风中等你 2020-12-20 11:11

The XML Schema Part 2 specifies that an instance of a datatype that is defined as boolean can have the following legal literals {true, false, 1, 0}. The following XML, for e

相关标签:
3条回答
  • 2020-12-20 11:31

    You can implement IXmlSerializable which will allow you to alter the serialized output of your class however you want. This will entail creating the 3 methods GetSchema(), ReadXml(XmlReader r) and WriteXml(XmlWriter r). When you implement the interface, these methods are called instead of .NET trying to serialize the object itself.

    Examples can be found at:

    http://www.developerfusion.co.uk/show/4639/ and

    http://msdn.microsoft.com/en-us/library/system.xml.serialization.ixmlserializable.aspx

    0 讨论(0)
  • 2020-12-20 11:36

    You can also do this by using some XmlSerializer attribute black magic:

    [XmlIgnore]
    public bool MyValue { get; set; }
    
    /// <summary>Get a value purely for serialization purposes</summary>
    [XmlElement("MyValue")]
    public string MyValueSerialize
    {
        get { return this.MyValue ? "1" : "0"; }
        set { this.MyValue = XmlConvert.ToBoolean(value); }
    }
    

    You can also use other attributes to hide this member from intellisense if you're offended by it! It's not a perfect solution, but it can be quicker than implementing IXmlSerializable.

    0 讨论(0)
  • 2020-12-20 11:45

    No, not using the default System.Xml.XmlSerializer: you'd need to change the data type to an int to achieve that, or muck around with providing your own serialization code (possible, but not much fun).

    However, you can simply post-process the generated XML instead, of course, either using XSLT, or simply using string substitution. A bit of a hack, but pretty quick, both in development time and run time...

    0 讨论(0)
提交回复
热议问题