When overridden in a derived class, writes the XML declaration with the version "1.0" and the standalone attribute.
Namespace: Microsoft.IdentityModel.Protocols.XmlSignature
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As DelegatingXmlDictionaryWriter
Dim standalone As Boolean

instance.WriteStartDocument(standalone)

Syntax

Visual Basic
Public Overrides Sub WriteStartDocument ( _
		standalone As Boolean _
)
C#
public override void WriteStartDocument (
		bool standalone
)
C++
public:
virtual void WriteStartDocument (
		bool standalone
) override
J#
public void WriteStartDocument (
		boolean standalone
)
JScript
public override function WriteStartDocument (
		standalone : boolean
)

Parameters

standalone

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

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also