以下の定義を持つxsdファイルがあります。 xsd.exe
を使用してxsdファイルからクラスを生成する場合、列挙型attrsは以下のように追加のFieldSpecified
プロパティを取得します。 FieldSpecified
プロパティが設定されていない限り、値は属性の値とシリアル化されません。 xsdに追加できる追加のプロパティはありますか、またはxsd.exe
と一緒に使うことができるフラグは、常に値をシリアル化する原因になりますか? xsd
からXSDの属性XSD.exeを防止するFieldSpecifiedフラグ
例:生成されたコードから
<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