OpenXmlWriter.WriteStartDocument Method

Definition

Overloads

WriteStartDocument()

Writes the XML declaration with the version "1.0".

WriteStartDocument(Boolean)

Writes the XML declaration with the version "1.0" and the standalone attribute.

WriteStartDocument()

Writes the XML declaration with the version "1.0".

public abstract void WriteStartDocument ();
abstract member WriteStartDocument : unit -> unit
Public MustOverride Sub WriteStartDocument ()

Applies to

WriteStartDocument(Boolean)

Writes the XML declaration with the version "1.0" and the standalone attribute.

public abstract void WriteStartDocument (bool standalone);
abstract member WriteStartDocument : bool -> unit
Public MustOverride Sub WriteStartDocument (standalone As Boolean)

Parameters

standalone
Boolean

If true, it writes "standalone=yes"; if false, it writes "standalone=no".

Applies to