XmlWriterSettings.CloseOutput Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore che indica se l'elemento XmlWriter deve chiudere anche il flusso sottostante o l'elemento TextWriter quando viene chiamato il metodo Close().
public:
property bool CloseOutput { bool get(); void set(bool value); };
public bool CloseOutput { get; set; }
member this.CloseOutput : bool with get, set
Public Property CloseOutput As Boolean
Valore della proprietà
true
per chiudere anche il flusso sottostante o TextWriter; in caso contrario, false
. Il valore predefinito è false
.
Esempio
Nell'esempio seguente viene scritto un frammento XML in un flusso di memoria.
XmlWriterSettings settings = new XmlWriterSettings();
settings.OmitXmlDeclaration = true;
settings.ConformanceLevel = ConformanceLevel.Fragment;
settings.CloseOutput = false;
// Create the XmlWriter object and write some content.
MemoryStream strm = new MemoryStream();
XmlWriter writer = XmlWriter.Create(strm, settings);
writer.WriteElementString("orderID", "1-456-ab");
writer.WriteElementString("orderID", "2-36-00a");
writer.Flush();
writer.Close();
// Do additional processing on the stream.
Dim settings As XmlWriterSettings = New XmlWriterSettings()
settings.OmitXmlDeclaration = true
settings.ConformanceLevel = ConformanceLevel.Fragment
settings.CloseOutput = false
' Create the XmlWriter object and write some content.
Dim strm as MemoryStream = new MemoryStream()
Dim writer As XmlWriter = XmlWriter.Create(strm, settings)
writer.WriteElementString("orderID", "1-456-ab")
writer.WriteElementString("orderID", "2-36-00a")
writer.Flush()
writer.Close()
' Do additional processing on the stream.
Commenti
Questa impostazione è utile quando si desidera scrivere codice XML in un flusso e quindi aggiungere informazioni aggiuntive alla fine del flusso al XmlWriter termine della scrittura.
Questa proprietà si applica solo alle XmlWriter istanze che generano contenuto XML in un flusso o TextWriter; in caso contrario, questa impostazione viene ignorata.