XmlWriter.WriteFullEndElement メソッド
アセンブリ: System.Xml (system.xml.dll 内)


このメソッドは常に完全な終了タグを書き込みます。これは、完全な終了タグを含める必要がある要素を処理するときに役立ちます。たとえば、ブラウザでは、HTML スクリプト ブロックを "</script>" で閉じる必要があります。

WriteEndElement メソッドと WriteFullEndElement メソッドを使用する例を次に示します。
Option Explicit Option Strict Imports System Imports System.IO Imports System.Xml Public Class Sample Public Shared Sub Main() ' Create a writer to write XML to the console. Dim settings As XmlWriterSettings = new XmlWriterSettings() settings.Indent = true Dim writer As XmlWriter = XmlWriter.Create(Console.Out, settings) ' Write the root element. writer.WriteStartElement("order") ' Write an element with attributes. writer.WriteStartElement("item") writer.WriteAttributeString("date", "2/19/01") writer.WriteAttributeString("orderID", "136A5") ' Write a full end element. Because this element has no ' content, calling WriteEndElement would have written a ' short end tag '/>'. writer.WriteFullEndElement() writer.WriteEndElement() ' Write the XML to file and close the writer writer.Close() End Sub 'Main End Class 'Sample
using System; using System.IO; using System.Xml; public class Sample { public static void Main() { // Create a writer to write XML to the console. XmlWriterSettings settings = new XmlWriterSettings(); settings.Indent = true; XmlWriter writer = XmlWriter.Create(Console.Out, settings); // Write the root element. writer.WriteStartElement("order"); // Write an element with attributes. writer.WriteStartElement("item"); writer.WriteAttributeString("date", "2/19/01"); writer.WriteAttributeString("orderID", "136A5"); // Write a full end element. Because this element has no // content, calling WriteEndElement would have written a // short end tag '/>'. writer.WriteFullEndElement(); writer.WriteEndElement(); // Write the XML to file and close the writer writer.Close(); } }

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からXmlWriter.WriteFullEndElement メソッドを検索する場合は、下記のリンクをクリックしてください。

- XmlWriter.WriteFullEndElement メソッドのページへのリンク