Create Method (Stream, XmlWriterSettings)

XmlWriter.Create Method (Stream, XmlWriterSettings)

[ 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 stream and XmlWriterSettings object.

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

'Declaration
Public Shared Function Create ( _
	output As Stream, _
	settings As XmlWriterSettings _
) As XmlWriter

Parameters

output
Type: System.IO.Stream
The stream to which you want to write. The XmlWriter writes XML 1.0 text syntax and appends it to the specified stream
settings
Type: System.Xml.XmlWriterSettings
The XmlWriterSettings object used to configure the new XmlWriter instance. If this is Nothing, a XmlWriterSettings with default settings is used.

Return Value

Type: System.Xml.XmlWriter
An XmlWriter object.

ExceptionCondition
ArgumentNullException

The stream value is Nothing.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft