XDocumentType.InternalSubset Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the internal subset for this Document Type Definition (DTD).
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Property Value
Type: System.StringA String that contains the internal subset for this Document Type Definition (DTD).
The following example creates a document with a DTD that contains an internal subset.
StringBuilder output = new StringBuilder();
string internalSubset = @"<!ELEMENT Pubs (Book+)>
<!ELEMENT Book (Title, Author)>
<!ELEMENT Title (#PCDATA)>
<!ELEMENT Author (#PCDATA)>";
string target = "xml-stylesheet";
string data = "href=\"mystyle.css\" title=\"Compact\" type=\"text/css\"";
XDocument doc = new XDocument(
new XComment("This is a comment."),
new XProcessingInstruction(target, data),
new XDocumentType("Pubs", null, null, internalSubset),
new XElement("Pubs",
new XElement("Book",
new XElement("Title", "Artifacts of Roman Civilization"),
new XElement("Author", "Moreno, Jordao")
),
new XElement("Book",
new XElement("Title", "Midieval Tools and Implements"),
new XElement("Author", "Gazit, Inbar")
)
),
new XComment("This is another comment.")
);
doc.Declaration = new XDeclaration("1.0", "utf-8", "true");
output.Append(doc.DocumentType.InternalSubset + Environment.NewLine);
OutputTextBlock.Text = output.ToString();
Show: