DelegatingXmlDictionaryWriter.WriteStartDocument Method
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.
Overloads
WriteStartDocument() |
When overridden in a derived class, writes the XML declaration with the version "1.0". |
WriteStartDocument(Boolean) |
When overridden in a derived class, writes the XML declaration with the version "1.0" and the standalone attribute. |
WriteStartDocument()
When overridden in a derived class, writes the XML declaration with the version "1.0".
public override void WriteStartDocument ();
override this.WriteStartDocument : unit -> unit
Public Overrides Sub WriteStartDocument ()
Applies to
WriteStartDocument(Boolean)
When overridden in a derived class, writes the XML declaration with the version "1.0" and the standalone attribute.
public override void WriteStartDocument (bool standalone);
override this.WriteStartDocument : bool -> unit
Public Overrides Sub WriteStartDocument (standalone As Boolean)
Parameters
- standalone
- Boolean
If true, it writes "standalone=yes"; if false, it writes "standalone=no".