Click or drag to resize
IRenderer Interface
Defines a class that can combine the XML contained in a Config instance and the XSLT stylesheet to output data to the user.

Namespace: Activsoft.Engine
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
public interface IRenderer

The IRenderer type exposes the following members.

Methods
  NameDescription
Public methodIntercepts
Whether the renderer can render the request or not.
Public methodRender(Stream, Config, XslCompiledTransform)
Renders the request to a Stream; this version is used when the RenderMode is Binary.
Public methodRender(TextWriter, Config, XslCompiledTransform)
Renders the request to a TextWriter; this version is used when the RenderMode is Character.
Public methodRender(XmlWriter, Config, XslCompiledTransform)
Renders the request to a XmlWriter; this version is used when the RenderMode is Character.
Top
See Also