Create Method (TextWriter)

XmlWriter.Create Method (TextWriter)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a new XmlWriter instance using the specified TextWriter.

Namespace:  System.Xml
Assembly:  System.Xml (in System.Xml.dll)

'Declaration
Public Shared Function Create ( _
	output As TextWriter _
) As XmlWriter

Parameters

output
Type: System.IO.TextWriter
The TextWriter to which you want to write. The XmlWriter writes XML 1.0 text syntax and appends it to the specified TextWriter.

Return Value

Type: System.Xml.XmlWriter
An XmlWriter object.

ExceptionCondition
ArgumentNullException

The text value is Nothing.

An XmlWriterSettings object with default settings is used to create the writer. If you wish to specify the features to support on the created writer, use the overload that takes an XmlWriterSettings object as one of its arguments, and pass in a XmlWriterSettings object with the correct settings.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft