如何使用c#在简单的xsd元素中查找限制值

时间:2010-01-28 19:27:00

标签: c# xml xsd

如何使用c#在xsd simpleType上检索这些枚举类型?这是一个简单类型的示例?

<xs:simpleType name="PaymentType">
    <xs:restriction base="xs:string">
      <xs:enumeration value="Cash" />
      <xs:enumeration value="CreditCard" />
  </xs:restriction>
</xs:simpleType>

谢谢

1 个答案:

答案 0 :(得分:4)

您可以在此代码中查看使用模式对象模型(SOM):

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Xml;
using System.Xml.Schema;

namespace Testing.Xml
{
    class Program
    {
        static void Main(string[] args)
        {
            // read the schema
            XmlSchema schema;
            using (var reader = new StreamReader(@"c:\path\to\schema.xsd"))
            {
                schema = XmlSchema.Read(reader, null);
            }

            // compile so that post-compilation information is available
            XmlSchemaSet schemaSet = new XmlSchemaSet();
            schemaSet.Add(schema);
            schemaSet.Compile();

            // update schema reference
            schema = schemaSet.Schemas().Cast<XmlSchema>().First();

            var simpleTypes = schema.SchemaTypes.Values.OfType<XmlSchemaSimpleType>()
                                               .Where(t => t.Content is XmlSchemaSimpleTypeRestriction);

            foreach (var simpleType in simpleTypes)
            {
                var restriction = (XmlSchemaSimpleTypeRestriction) simpleType.Content;
                var enumFacets = restriction.Facets.OfType<XmlSchemaEnumerationFacet>();

                if (enumFacets.Any())
                {
                    Console.WriteLine("" + simpleType.Name);
                    foreach (var facet in enumFacets)
                    {
                        Console.WriteLine(facet.Value);
                    }
                }
            }
        }
    }
}

此代码仅适用于命名的简单类型 - 如果您有包含匿名简单类型的元素或属性,那么它会变得更复杂,因为您必须遍历所有元素和属性以查找具有限制内容的简单类型枚举方面。