XmlWriter.Create Method (XmlWriter)
[ 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 object.
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.
Return Value
Type: System.Xml.XmlWriterAn XmlWriter object that is wrapped around the specified XmlWriter object.
| Exception | Condition |
|---|---|
| ArgumentNullException | The writer value is null. |
This method allows you add additional features to an underlying XmlWriter object. The underlying XmlWriter object can be an object created by the XmlWriter.Create method.
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.