2
我有一個xsd文件,它具有以下定義。當使用xsd.exe
從xsd文件生成類時,enum attrs將獲得其他FieldSpecified
屬性,如下所示。除非設置了FieldSpecified
屬性,否則該值不會與該屬性的值序列化。是否有一個額外的屬性,我可以添加到xsd或一個標誌,我可以使用xsd.exe
始終使該值被序列化?從xsd
XSD的屬性以防止XSD.exe字段指定的標誌
示例:從生成碼
<xs:simpleType name="adrLn">
<xs:restriction base="xs:string">
<xs:enumeration value="ST" />
<xs:enumeration value="APTN" />
</xs:restriction>
</xs:simpleType>
...
<xs:element name="AddressLine" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="AddrLineTypCd" type="adrLn" />
</xs:complexType>
</xs:element>
實施例:
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
public partial class RequestCheckIssueAddressAddressLine {
private adrLn addrLineTypCdField;
private bool addrLineTypCdFieldSpecified;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public adrLn AddrLineTypCd {
get {
return this.addrLineTypCdField;
}
set {
this.addrLineTypCdField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool AddrLineTypCdSpecified {
get {
return this.addrLineTypCdFieldSpecified;
}
set {
this.addrLineTypCdFieldSpecified = value;
}
}
}
我希望它會實現一個具有可空襯板或標誌字段如果已經使用了setter,那麼該字段是序列化的。發佈後,我發現它也爲數字值。 – QueueHammer