我有一个XSD文件,其中包含XML文件中某些元素的值。我想编写一个从XSD文件中提取这些值的程序,以便可以从所述元素的所有值中创建一个下拉菜单。
这是我的XSD文件,我要在其中使用应用程序中提供的每个值:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="POSSimpleTypes.xsd"/>
<xs:complexType name="PRODUCT_STOPType">
<xs:annotation>
<xs:documentation>Version 1.11</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="CRUD">
<xs:simpleType>
<xs:restriction base="CRUDType">
<xs:enumeration value="P"/>
<xs:enumeration value="C"/>
<xs:enumeration value="U"/>
<xs:enumeration value="D"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="SKU_CODE">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="SKUType">
<xs:attribute name="owner" type="CODEType" use="optional"/>
<xs:attribute name="owner_type" use="optional">
<xs:simpleType>
<xs:restriction base="CONSTANTType">
<xs:enumeration value="1"/>
<xs:enumeration value="8"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="STOP_REASON">
<xs:simpleType>
<xs:restriction base="CONSTANTType">
<xs:enumeration value="21001"/>
<xs:enumeration value="21002"/>
<xs:enumeration value="21003"/>
<xs:enumeration value="21004"/>
<xs:enumeration value="21005"/>
<xs:enumeration value="21006"/>
<xs:enumeration value="21007"/>
<xs:enumeration value="21008"/>
<xs:enumeration value="21009"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="LOGIN_NAME" type="NAMEType"/>
<xs:element name="PROD_STOP_COMMENCE" type="DATEType" minOccurs="0"/>
<xs:element name="PROD_STOP_END" type="DATEType" minOccurs="0"/>
<xs:element name="CODE" type="LONG_CODEType" minOccurs="0"/>
<xs:element name="ORG_UNITS">
<xs:complexType>
<xs:sequence maxOccurs="unbounded">
<xs:element name="ORGU_CODE">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="CODEType">
<xs:attribute name="type" type="NAMEType" use="required"/>
<xs:attribute name="parent" type="CODEType" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="docNo" type="INTEGERType" use="required"/>
</xs:complexType>
<xs:element name="PRODUCT_STOPType" type="PRODUCT_STOPType" />
</xs:schema>
当我在Visual Studio中运行开发人员命令提示符并将文件转换为类时,生成的文件如下所示:
public int STOP_REASON {
get {
return this.sTOP_REASONField;
}
set {
this.sTOP_REASONField = value;
}
}
XSD文件中列出的值在哪里,以及如何检索它们?
谢谢。
答案 0 :(得分:2)
我猜想,我对xsd工具只为public class A { }
public class B<T>{}
public static class Extensions
{
public static void DoSomething<T>(this B<T> thing) {}
}
public static void Test()
{
var test = new B<A>();
test.DoSomething();
}
类型定义的枚举值生成枚举的假设是正确的。我尝试了以下简单的xml模式:
xs:string
在此上运行xsd工具,将产生以下类:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="http://tempuri.org/XMLSchema.xsd"
elementFormDefault="qualified"
xmlns="http://tempuri.org/XMLSchema.xsd"
xmlns:mstns="http://tempuri.org/XMLSchema.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
<xs:element name="MyClass">
<xs:complexType>
<xs:sequence>
<xs:element name="MyStringEnum">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Val1" />
<xs:enumeration value="Val2" />
<xs:enumeration value="Val3" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="MyIntEnum">
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:enumeration value="2" />
<xs:enumeration value="4" />
<xs:enumeration value="6" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
如您所见,基于using System.Xml.Serialization;
/// <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, Namespace="http://tempuri.org/XMLSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="http://tempuri.org/XMLSchema.xsd", IsNullable=false)]
public partial class MyClass {
private MyClassMyStringEnum myStringEnumField;
private int myIntEnumField;
/// <remarks/>
public MyClassMyStringEnum MyStringEnum {
get {
return this.myStringEnumField;
}
set {
this.myStringEnumField = value;
}
}
/// <remarks/>
public int MyIntEnum {
get {
return this.myIntEnumField;
}
set {
this.myIntEnumField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://tempuri.org/XMLSchema.xsd")]
public enum MyClassMyStringEnum {
/// <remarks/>
Val1,
/// <remarks/>
Val2,
/// <remarks/>
Val3,
}
的成员的enum
是生成的,而基于xs:string
的成员只是作为int类型创建的。我仍在寻找文档来确认这一点,但是测试结果不言而喻。