如何将文档类型添加到 XDocument?

发布于 2024-08-04 08:25:10 字数 304 浏览 4 评论 0原文

我有一个现有的 XDocument 对象,我想向其中添加 XML 文档类型。例如:

XDocument doc = XDocument.Parse("<a>test</a>");

我可以使用以下方法创建 XDocumentType:

XDocumentType doctype = new XDocumentType("a", "-//TEST//", "test.dtd", "");

但是如何将其应用于现有的 XDocument?

I have an existing XDocument object that I would like to add an XML doctype to. For example:

XDocument doc = XDocument.Parse("<a>test</a>");

I can create an XDocumentType using:

XDocumentType doctype = new XDocumentType("a", "-//TEST//", "test.dtd", "");

But how do I apply that to the existing XDocument?

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

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

发布评论

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

评论(2

病女 2024-08-11 08:25:10

您可以将 XDocumentType 添加到现有 XDocument 中,但它必须是第一个添加的元素。与此相关的文档含糊不清。

感谢 Jeroen 在评论中指出使用 AddFirst 的便捷方法。这种方法允许您编写以下代码,该代码显示如何在 XDocument 已有元素后添加 XDocumentType

var doc = XDocument.Parse("<a>test</a>");
var doctype = new XDocumentType("a", "-//TEST//", "test.dtd", "");
doc.AddFirst(doctype);

或者,您可以使用 Add 方法将 XDocumentType 添加到现有的 XDocument 中,但需要注意的是,不应存在其他元素,因为它必须位于第一个。

XDocument xDocument = new XDocument();
XDocumentType documentType = new XDocumentType("Books", null, "Books.dtd", null);
xDocument.Add(documentType);

另一方面,以下内容无效,并且会导致 InvalidOperationException:“此操作将创建结构不正确的文档。”

xDocument.Add(new XElement("Books"));
xDocument.Add(documentType);  // invalid, element added before doctype

You can add an XDocumentType to an existing XDocument, but it must be the first element added. The documentation surrounding this is vague.

Thanks to Jeroen for pointing out the convenient approach of using AddFirst in the comments. This approach allows you to write the following code, which shows how to add the XDocumentType after the XDocument already has elements:

var doc = XDocument.Parse("<a>test</a>");
var doctype = new XDocumentType("a", "-//TEST//", "test.dtd", "");
doc.AddFirst(doctype);

Alternately, you could use the Add method to add an XDocumentType to an existing XDocument, but the caveat is that no other element should exist since it has to be first.

XDocument xDocument = new XDocument();
XDocumentType documentType = new XDocumentType("Books", null, "Books.dtd", null);
xDocument.Add(documentType);

On the other hand, the following is invalid and would result in an InvalidOperationException: "This operation would create an incorrectly structured document."

xDocument.Add(new XElement("Books"));
xDocument.Add(documentType);  // invalid, element added before doctype
时光是把杀猪刀 2024-08-11 08:25:10

只需将其传递给 XDocument 构造函数完整示例):

XDocument doc = new XDocument(
    new XDocumentType("a", "-//TEST//", "test.dtd", ""),
    new XElement("a", "test")
);

或使用 XDocument.Add(< code>XDocumentType 必须添加在根元素之前):

XDocument doc = new XDocument();
doc.Add(new XDocumentType("a", "-//TEST//", "test.dtd", ""));
doc.Add(XElement.Parse("<a>test</a>"));

Just pass it to the XDocument constructor (full example):

XDocument doc = new XDocument(
    new XDocumentType("a", "-//TEST//", "test.dtd", ""),
    new XElement("a", "test")
);

or use XDocument.Add (the XDocumentType has to be added before the root element):

XDocument doc = new XDocument();
doc.Add(new XDocumentType("a", "-//TEST//", "test.dtd", ""));
doc.Add(XElement.Parse("<a>test</a>"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文