System.Xml.Linq 中是否有 System.Xml.XmlAttribute.Specified 的等效项?

发布于 2024-12-13 19:25:22 字数 281 浏览 2 评论 0原文

我必须重新编写一个大型项目,该项目使用 System.Xml-Namespace 中的类来使用 System.Xml.Linq 中的相应类(使用 .NET-3.5)。

其中一个函数使用 System.Xml.XmlAttribute.Specified 属性来查找针对 DTD 指定的所有属性。

System.Xml.Linq-Namespace 中是否存在与此属性等效的属性?如果没有,是否有解决方法可以从 System.Xml.Linq.XAttribute 获取相同的信息?

I have to re-write a large project that uses classes from the System.Xml-Namespace to use the respective classes from System.Xml.Linq using .NET-3.5.

One the functions use the System.Xml.XmlAttribute.Specified property to find all attributes that are specified in regard to a DTD.

Is there an equivalent to this property in the System.Xml.Linq-Namespace, and, if not, is there a workaround to get the same information from an System.Xml.Linq.XAttribute?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぃ弥猫深巷。 2024-12-20 19:25:22

GetSchemaInfo 扩展方法,返回的 IXmlSchemaInfo 对象具有一个 IsDefault 属性,如果该值来自用于验证的 XSD,则该属性将为 true。

There is the GetSchemaInfo extension method, the returned IXmlSchemaInfo object has a IsDefault property which will be true if the value comes from an XSD used for validation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文