Click or drag to resize
XmlWriterCreate Method
Creates a new System.Xml.XmlWriter instance using the specified stream.

Namespace: System.Xml
Assembly: CSharpXamlForHtml5.System.Xml.dll (in CSharpXamlForHtml5.System.Xml.dll.dll) Version: 1.0.0.0
Syntax
C#
public static XmlWriter Create(
	Stream output
)

Parameters

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

Return Value

Type: XmlWriter
An System.Xml.XmlWriter object.
See Also