XmlDocument.WriteContentTo(XmlWriter) 方法    
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 XmlDocument 节点的所有子级保存到指定的 XmlWriter 中。
public:
 override void WriteContentTo(System::Xml::XmlWriter ^ xw);public override void WriteContentTo (System.Xml.XmlWriter xw);override this.WriteContentTo : System.Xml.XmlWriter -> unitPublic Overrides Sub WriteContentTo (xw As XmlWriter)参数
- xw
- XmlWriter
要保存到其中的 XmlWriter。
示例
以下示例显示屏幕上的文档。
void WriteXml( XmlDocument^ doc )
{
   XmlTextWriter^ writer = gcnew XmlTextWriter( Console::Out );
   writer->Formatting = Formatting::Indented;
   doc->WriteContentTo( writer );
   writer->Flush();
   Console::WriteLine();
}
public static void WriteXml( XmlDocument doc )
 {
    XmlTextWriter writer = new XmlTextWriter(Console.Out);
    writer.Formatting = Formatting.Indented;
    doc.WriteContentTo( writer );
    writer.Flush();
    Console.WriteLine();
 }
Public Shared Sub WriteXml(doc As XmlDocument)
    Dim writer As New XmlTextWriter(Console.Out)
    writer.Formatting = Formatting.Indented
    doc.WriteContentTo(writer)
    writer.Flush()
    Console.WriteLine()
End Sub
注解
此方法是文档对象模型 (DOM) 的 Microsoft 扩展。 它在功能上等效于 InnerXml 属性。
该 XmlDeclaration.Encoding 属性确定写出的编码。 Encoding 如果该属性没有值, XmlDocument 则会在没有编码属性的情况下写出。