XmlWriter.WriteStartDocument Method (Boolean)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
When overridden in a derived class, writes the XML declaration with the version "1.0" and the standalone attribute.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Syntax
'Declaration
Public MustOverride Sub WriteStartDocument ( _
standalone As Boolean _
)
public abstract void WriteStartDocument(
bool standalone
)
Parameters
- standalone
Type: System.Boolean
If true, it writes "standalone=yes"; if false, it writes "standalone=no".
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | This is not the first write method called after the constructor. |
Remarks
The encoding level of the document is determined by how the writer is implemented. When WriteStartDocument is called, the writer validates that what you are writing is a well-formed XML document. For example, it checks that the XML declaration is the first node, that one and only one root-level element exists, and so on. If this method is not called, the writer assumes an XML fragment is being written and applies no root level rules.
If WriteStartDocument has been called and then the WriteProcessingInstruction method is used to create another XML declaration, an exception will be thrown.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also