Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XContainer::CreateWriter Method ()

 

Creates an XmlWriter that can be used to add nodes to the XContainer.

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

public:
XmlWriter^ CreateWriter()

Return Value

Type: System.Xml::XmlWriter^

An XmlWriter that is ready to have content written to it.

While serializing, namespace prefixes are inferred from the namespace attributes in the XML tree.

For more information, see Working with XML Namespaces.

You can use this method to perform an XSLT transformation. You can create an XML tree, create an XmlReader from the XML tree, create a new document, and create a XmlWriter that will write into the new document. Then, you can invoke the XSLT transformation, passing the XmlReader and XmlWriter to the transform. After the transformation successfully completes, the new XML tree is populated with the results of the transformation.

No code example is currently available or this language may not be supported.

This example produces the following output:


                <Root>
  <C1>Child1 data</C1>
  <C2>Child2 data</C2>
</Root>

Universal Windows Platform
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft