XmlDocument::WriteContentTo Method (XmlWriter^)

 

Saves all the children of the XmlDocument node to the specified XmlWriter.

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

public:
virtual void WriteContentTo(
	XmlWriter^ xw
) override

Parameters

xw
Type: System.Xml::XmlWriter^

The XmlWriter to which you want to save.

This method is a Microsoft extension to the Document Object Model (DOM). It is functionally equivalent to the InnerXml property.

The XmlDeclaration::Encoding property determines the encoding that is written out. If the Encoding property does not have a value, the XmlDocument is written out without an encoding attribute.

The following example displays the document onscreen.

void WriteXml( XmlDocument^ doc )
{
   XmlTextWriter^ writer = gcnew XmlTextWriter( Console::Out );
   writer->Formatting = Formatting::Indented;
   doc->WriteContentTo( writer );
   writer->Flush();
   Console::WriteLine();
}

Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Return to top
Show: