XDocument Constructor (XDeclaration, Object[])
Collapse the table of content
Expand the table of content

XDocument Constructor (XDeclaration, Object[])

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Initializes a new instance of the XDocument class with the specified XDeclaration and content.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)

public XDocument(
	XDeclaration declaration,
	params Object[] content
)

Parameters

declaration
Type: System.Xml.Linq.XDeclaration
An XDeclaration for the document.
content
Type: System.Object []
The content of the document.

There are not many scenarios that require you to create an XDocument. Instead, you can usually create your XML trees with an XElement root node. Unless you have a specific requirement to create a document (for example, because you have to create processing instructions and comments at the top level, or you have to support document types), it is often more convenient to use XElement as your root node.

For more information about the valid content of an XDocument, see Valid Content of XElement and XDocument Objects in the .NET Framework documentation.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft