[XmlText]序列化可以为空吗?

我有一个类包含我想用XmlSerializer序列化的数组:

[XmlArray("properties")]
[XmlArrayItem("property", IsNullable = true)]
public List<Property> Properties { get; set; }

Property是一个包含属性和一些XmlText

[XmlAttribute("name")]
public string Name { get; set; }

[XmlText]
public string Value { get; set; }

问题是,当Value为null时,它会作为一个空字符串序列化:

<property name="foo" />

而不是零。 我正在寻找完全省略的值,或者看起来像这样:

<property name="foo" xsi:nil="true" />

是否有可能根据其XmlTextXmlText列表中的元素? 我真的想要避免自定义序列化,但是在这种情况下,其他一些序列化框架可能会更好?


在XmlArrayItemAttribute类中使用IsNullable = true。 举一个例子。

[XmlRoot("Root")]
public class Root
{
    [XmlArrayItem("Element", IsNullable = true)]
    public string[] Elements { get; set; }
}

Visual Studion 2012和.Net 4.5中的一些示例代码:

using System.Xml.Serialization;

...

// Test object
Root root;
root = new Root();
root.Elements = new string[] { null, "abc" };

using(MemoryStream stream = new MemoryStream())
{
    XmlSerializer xmlSerializer = new XmlSerializer(typeof(Root));
    xmlSerializer.Serialize(stream, root);

    Console.WriteLine(new string(Encoding.UTF8.GetChars(stream.GetBuffer())));
}

输出是(为了清楚起见添加了换行符):

<?xml version="1.0"?>
<Root 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Element>
    <string xsi:nil="true" />
    <string>abc</string>
  </Element>
</Root>

和一个复杂的类型(也在Visual Studio 2012的.Net 4.5中):

    public class MyProperty
    {
        public string Foo { get; set; }
    }

    [XmlRoot("Root")]
    public class Root
    {
        [XmlArrayItem("Element", IsNullable = true)]
        public MyProperty[] Elements { get; set; }
    }

    ,,,

    Root root;
    root = new Root();
    root.Elements = new MyProperty[] { null, new MyProperty{ Foo = "bar" } };

    // Other code is as above

使用上述相同的代码产生:

<?xml version="1.0"?>
<Root 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Elements>
    <Element xsi:nil="true" />
    <Element>
      <Foo>bar</Foo>
    </Element>
  </Elements>
</Root>

还要记住,类型必须是引用类型(例如不是结构体)来写出xsi:nil=true


一个想法 - 你可以使用“NameSpecified”,但在get中检查“Value”的值。 意思是,如果值为空,那么Name也不会被输出。

不幸的是,你仍然会有一个null属性的xml元素,tho; 我希望这是更可以接受的...

class Program
{
    static void Main(string[] args)
    {
        ObjectWithProperties obj = new ObjectWithProperties()
        {
            Properties = new List<Property>()
        };

        Property p = new Property();
        p.Name = "This WILL Show Up";
        p.Value = "I'm here";
        obj.Properties.Add(p);

        Property p1 = new Property();
        p1.Name = "This Will NOT Show Up";
        obj.Properties.Add(p1);

        Console.WriteLine(ToXmlString(obj));
        Console.ReadLine();
    }

    public static string ToXmlString(object value)
    {
        if (value == null) return string.Empty;
        XmlSerializer ser = new XmlSerializer(value.GetType());
        MemoryStream ms = new MemoryStream();
        ser.Serialize(ms, value);
        return Encoding.UTF8.GetString(ms.ToArray());
    }

}
public class ObjectWithProperties
{
    [XmlArray("properties")]
    [XmlArrayItem("property", IsNullable = true)]
    public List<Property> Properties { get; set; }
}

public class Property
{
    [XmlAttribute("name")]
    public string Name { get; set; }

    [XmlIgnore]
    public bool NameSpecified
    {
        get { return !string.IsNullOrEmpty(Value); }
    }

    [XmlText]
    public string Value { get; set; }

}
链接地址: http://www.djcxy.com/p/11173.html

上一篇: Can [XmlText] serialization be nullable?

下一篇: Should I use NSOperationQueue and NSOperation instead of NSThread?