| ConfigRender Method (Stream, XslCompiledTransform) |
Closes the XML document, and transforms it with the current xslt stylesheet into a Stream.
Namespace: Activsoft.EngineAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxpublic void Render(
Stream s,
XslCompiledTransform transformer
)
Public Sub Render (
s As Stream,
transformer As XslCompiledTransform
)
public:
void Render(
Stream^ s,
XslCompiledTransform^ transformer
)
member Render :
s : Stream *
transformer : XslCompiledTransform -> unit
Parameters
- s
- Type: System.IOStream
The stream to which you want to output. - transformer
- Type: System.Xml.XslXslCompiledTransform
The transform to be executed.
RemarksSince this method uses a Stream, the output encoding will be determined by the xsl:output encoding attribute.
Important |
|---|
|
You should not use this method directly from your code; use an HandlerElement instead.
|
See Also