我有一个XML Schema,其中包含使用<xs:union>
和<xs:list>
的数据类型。这是一个摘录:
<xs:simpleType name="mixeduniontype">
<xs:union memberTypes="xs:boolean xs:int xs:double xs:string"/>
</xs:simpleType>
<xs:simpleType name="valuelist">
<xs:list itemType="xs:double"/>
</xs:simpleType>
这是一个示例XML片段:
<value>42</value>
<value>hello</value>
<values>1 2 3.2 5.6</values>
两个较高的<value>
元素是联合,而较低的<values>
元素是一个列表。
我的问题是,如何解析.NET中的<xs:union>
和<xs:list>
元素?
如何检查union元素中的值具有哪种数据类型?
如何提取list元素中的元素并将它们转换为C#列表?
System.XML 是否有内置支持进行此类解析,或者我是否需要自己编写解析代码?
答案 0 :(得分:0)
希望得到更好的答案,但是,
我认为你需要自己写。
如果你想为xs:list
和xs:union
的所有可能实例提供通用解析器,那么你会遇到更困难的问题,但对于你的特定架构,它是相当直接的。
//assuming parent is the containing node
//Parse your 'valuelist'
var newList = new List<double>();
foreach (string s in parent.XElement("values").value.Split(" ")) //should check for nulls here
{
double value = 0.0;
if (double.TryParse(s, value))
{
newList.Add(value);
}
else
{
\\throw some format exception
}
}
//Parse your 'mixeduniontype'
Type valueType = typeof string;
double doubleValue;
int intValue;
boolean booleanValue;
var stringValue = parent.XElement("value").First();
if (double.TryParse(stringValue, doubleValue))
{
valueType = typeof double;
}
else
{
if (int.TryParse(stringValue, intValue))
{
valueType = typeof int;
}
else
{
if (bool.TryParse(stringValue, booleanValue))
valueType = typeof boolean;
}
}