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

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

Parameters

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

Since this method uses a TextWriter, the output encoding will be determined by the encoding defined in the TextWriter.

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