XmlDocument.WriteTo(XmlWriter) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XmlDocument
노드를 지정된 XmlWriter에 저장합니다.
public:
override void WriteTo(System::Xml::XmlWriter ^ w);
public override void WriteTo (System.Xml.XmlWriter w);
override this.WriteTo : System.Xml.XmlWriter -> unit
Public Overrides Sub WriteTo (w As XmlWriter)
매개 변수
저장할 대상 XmlWriter
입니다.
예제
다음은 문서를 화면에 표시하는 예제입니다.
void WriteXml( XmlDocument^ doc )
{
XmlTextWriter^ writer = gcnew XmlTextWriter( Console::Out );
writer->Formatting = Formatting::Indented;
doc->WriteTo( writer );
writer->Flush();
Console::WriteLine();
}
public static void WriteXml( XmlDocument doc )
{
XmlTextWriter writer = new XmlTextWriter(Console.Out);
writer.Formatting = Formatting.Indented;
doc.WriteTo( writer );
writer.Flush();
Console.WriteLine();
}
Public Shared Sub WriteXml(doc As XmlDocument)
Dim writer As New XmlTextWriter(Console.Out)
writer.Formatting = Formatting.Indented
doc.WriteTo(writer)
writer.Flush()
Console.WriteLine()
End Sub
설명
이 메서드는 DOM(문서 개체 모델)에 대한 Microsoft 확장입니다. 기능적으로 속성과 OuterXml 동일합니다.
이 속성은 XmlDeclaration.Encoding 기록된 인코딩을 결정합니다. 속성에 Encoding
값 XmlDocument
이 없으면 인코딩 특성 없이 작성됩니다.