在下面的XML代码中,IDFeature和IDView属性的值必须与相应的枚举匹配。 c#代码,DTD,XSD,Visual Studio或Resharper是否允许指定此约束?
<MenuEntry Name="Menu_name_Reports"
IDFeature="23"
IDView="4"
Description=""
ImagePath="/Resources/Menu/reports.png" />
</MenuEntry>
答案 0 :(得分:1)
在XSD中,可以将属性约束为特定值;例如:
<xs:attribute name="IDView">
<xs:simpleType>
<xs:restriction base="xs:string"> <!-- here you can set the base type -->
<xs:enumeration value="value1"/> <!-- add all possible values here -->
<xs:enumeration value="value2"/>
<xs:enumeration value="value3"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
此处IDView
的值只能是&#34; value1&#34;或&#34; value2&#34;或&#34; value3&#34;。
以下是如何使用enum
为XDocument
的所有值生成XSD的这一部分的示例:
enum Values { value1, value2, value3 };
XNamespace xsd = "http://www.w3.org/2001/XMLSchema";
XDocument x = new XDocument(
new XElement(xsd + "attribute",
new XAttribute(XNamespace.Xmlns + "xs", "http://www.w3.org/2001/XMLSchema"),
new XAttribute("name", "IDView"),
new XElement(xsd + "simpleType",
new XElement(xsd + "restriction",
new XAttribute("base", "xs:string"),
Enum.GetNames(typeof(Values)).Select(a =>
new XElement(xsd + "enumeration",
new XAttribute("value", a.ToString())))))));