XamlXmlWriterSettings.CloseOutput Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that specifies whether the XamlXmlWriter should close immediately on Dispose
or other operations, or whether the XAML writer should instead write the buffer output before closing. Use this setting with caution; closing immediately can result in invalid XAML that cannot be loaded again.
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
Property Value
true
if XamlXmlWriter immediately closes on a Dispose
or similar operations. false
if the remaining buffer output is written before the XamlXmlWriter is released. The default is false
.
Remarks
This setting influences the logic of XamlXmlWriter.Dispose, which calls Close
on the underlying XmlWriter or TextWriter when CloseOutput is true
; or it calls Flush (again tied to the underlying XmlWriter or TextWriter) if CloseOutput is false
.