XmlWriter.Flush Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Po zastąpieniu w klasie pochodnej opróżnia wszystkie elementy w buforze do bazowych strumieni, a także opróżnia bazowy strumień.
public:
abstract void Flush();
public abstract void Flush ();
abstract member Flush : unit -> unit
Public MustOverride Sub Flush ()
Wyjątki
Metoda XmlWriter została wywołana przed zakończeniem poprzedniej operacji asynchronicznej. W takim przypadku InvalidOperationException jest zgłaszany komunikat "Operacja asynchroniczna jest już w toku".
Przykłady
Poniższy przykład zapisuje dwa fragmenty XML.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
void main()
{
// Create an XmlWriter to write XML fragments.
XmlWriterSettings^ settings = gcnew XmlWriterSettings;
settings->ConformanceLevel = ConformanceLevel::Fragment;
settings->Indent = true;
XmlWriter^ writer = XmlWriter::Create( Console::Out, settings );
// Write an XML fragment.
writer->WriteStartElement( L"book" );
writer->WriteElementString( L"title", L"Pride And Prejudice" );
writer->WriteEndElement();
writer->Flush();
// Write another XML fragment.
writer->WriteStartElement( L"cd" );
writer->WriteElementString( L"title", L"Americana" );
writer->WriteEndElement();
writer->Flush();
// Close the writer.
writer->Close();
}
using System;
using System.IO;
using System.Xml;
public class Sample {
public static void Main() {
// Create an XmlWriter to write XML fragments.
XmlWriterSettings settings = new XmlWriterSettings();
settings.ConformanceLevel = ConformanceLevel.Fragment;
settings.Indent = true;
XmlWriter writer = XmlWriter.Create(Console.Out, settings);
// Write an XML fragment.
writer.WriteStartElement("book");
writer.WriteElementString("title", "Pride And Prejudice");
writer.WriteEndElement();
writer.Flush();
// Write another XML fragment.
writer.WriteStartElement("cd");
writer.WriteElementString("title", "Americana");
writer.WriteEndElement();
writer.Flush();
// Close the writer.
writer.Close();
}
}
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
' Create an XmlWriter to write XML fragments.
Dim settings As XmlWriterSettings = new XmlWriterSettings()
settings.ConformanceLevel = ConformanceLevel.Fragment
settings.Indent = true
Dim writer As XmlWriter = XmlWriter.Create(Console.Out, settings)
' Write an XML fragment.
writer.WriteStartElement("book")
writer.WriteElementString("title", "Pride And Prejudice")
writer.WriteEndElement()
writer.Flush()
' Write another XML fragment.
writer.WriteStartElement("cd")
writer.WriteElementString("title", "Americana")
writer.WriteEndElement()
writer.Flush()
'Close the writer.
writer.Close()
End Sub
End Class
Uwagi
Jest to wywoływane Close zamiast tego, gdy chcesz zapisać więcej do bazowego strumienia bez utraty tego, co jest nadal w buforze.
Aby uzyskać asynchroniczną wersję tej metody, zobacz FlushAsync.