XamlXmlWriterSettings.CloseOutput Property

Definition

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.

Applies to