XmlWriterSettings.WriteEndDocumentOnClose Property

Definition

Gets or sets a value that indicates whether the XmlWriter will add closing tags to all unclosed element tags when the Close() method is called.

public:
 property bool WriteEndDocumentOnClose { bool get(); void set(bool value); };
public bool WriteEndDocumentOnClose { get; set; }
member this.WriteEndDocumentOnClose : bool with get, set
Public Property WriteEndDocumentOnClose As Boolean

Property Value

true if all unclosed element tags will be closed out; otherwise, false. The default value is true.

Remarks

If you set this flag to false, the output XML file may not be well-formed.

Applies to