标签: .net linq-to-xml
我必须重新编写一个大型项目,该项目使用System.Xml-Namespace中的类,使用 .NET-3.5 来使用System.Xml.Linq中的相应类。
其中一个函数使用System.Xml.XmlAttribute.Specified属性来查找有关DTD指定的所有属性。
System.Xml.XmlAttribute.Specified
System.Xml.Linq-Namespace中是否存在此属性的等效项,如果没有,是否有解决方法从System.Xml.Linq.XAttribute获取相同的信息?
System.Xml.Linq.XAttribute
答案 0 :(得分:1)
有GetSchemaInfo扩展方法,返回的IXmlSchemaInfo对象具有IsDefault属性,如果该值来自用于验证的XSD,则该属性为真。
GetSchemaInfo
IXmlSchemaInfo
IsDefault