Click or drag to resize
ConfigRender Method (XmlWriter, XslCompiledTransform)
Closes the XML document, and transforms it with the current xslt stylesheet into an XmlWriter.

Namespace: Activsoft.Engine
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
public void Render(
	XmlWriter w,
	XslCompiledTransform transformer
)

Parameters

w
Type: System.XmlXmlWriter
The stream to which you want to output.
transformer
Type: System.Xml.XslXslCompiledTransform
The transform to be executed.
Remarks

Since this method uses an XmlWriter, the output encoding will be determined by the encoding defined in the XmlWriter.

Important note Important
You should not use this method directly from your code; use an HandlerElement instead.
See Also