2017-01-25 67 views
2

我有一個xsd文件,它具有以下定義。當使用xsd.exe從xsd文件生成類時,enum attrs將獲得其他FieldSpecified屬性,如下所示。除非設置了FieldSpecified屬性,否則該值不會與該屬性的值序列化。是否有一個額外的屬性,我可以添加到xsd或一個標誌,我可以使用xsd.exe始終使該值被序列化?從xsdXSD的屬性以防止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; 
     } 
    } 
} 

回答

0

沒有標誌去改變 - 它是全部由XSD驅動。

枚舉不可爲空。你的屬性是可選的(在XSD的使用屬性的默認值),所以xxxSpecified屬性需要控制相關領域的系列化(你的情況addrLineTypCdField場)。

既然你已經表示改變XSD作爲一種可能性,那麼下面應該解決您的問題(使所需的屬性):

<xs:attribute name="AddrLineTypCd" type="adrLn" use="required" /> 
+0

我希望它會實現一個具有可空襯板或標誌字段如果已經使用了setter,那麼該字段是序列化的。發佈後,我發現它也爲數字值。 – QueueHammer