XmlWriter.Create Method (XmlWriter, 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 specified XmlWriter and XmlWriterSettings objects.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- output
- Type: System.Xml.XmlWriter
The XmlWriter object that you want to use as the underlying writer.
- settings
- Type: System.Xml.XmlWriterSettings
The XmlWriterSettings object used to configure the new XmlWriter instance. If this is null, a XmlWriterSettings with default settings is used.
Return Value
Type: System.Xml.XmlWriterAn XmlWriter object that is wrapped around the specified XmlWriter object.
| Exception | Condition |
|---|---|
| ArgumentNullException | The writer value is null. |
Show: