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

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

Parameters

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

Since this method uses a Stream, the output encoding will be determined by the xsl:output encoding attribute.

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