change how XmlSerializer serializes empty elements

流过昼夜 提交于 2019-11-29 08:19:48

After trying different things I accidentally happened upon the solution. I set the XmlElementAttribute.IsNullable to true like the previous answer suggested.

[System.Xml.Serialization.XmlElementAttribute(ElementName = "Confirm", IsNullable=true)]
    public ConfirmType Confirm
    {
        get
        {
            return this.confirmField;
        }
        set
        {
            this.confirmField = value;
            this.RaisePropertyChanged("Confirm");
        }
    }

Then when setting the confirm type in the code I used the default constructor instead of setting Confirm to null.

retval.ConfirmBODDataArea.Confirm = new ConfirmType();

This serialized as <star:Confirm/>

You can try setting the XmlElementAttribute.IsNullable property to true. However, bear in mind xsi:nil="true" attribute will be output as a consequence.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!