|
What is XSLCompiledTransform class of the .NET Framework?
|
What is XSLCompiledTransform class of the .NET
Framework? - March 16, 2009 at 16:45 PM by Amit Satpute
What is XSLCompiledTransform class of the .NET
Framework?
The XslCompiledTransform class is an XSLT processor.
-
It supports the XSLT 1.0 syntax.
-
It includes performance gains when compared to (the no longer in use)
XslTransform class.
-
The structure of the XslCompiledTransform and XslTransform classes is similar.
-
The Load method loads and compiles the style sheet, while the Transform method
executes the XSLT transform.
-
Support for the XSLT document() function and embedded script blocks are
disabled by default and can be can be enabled by creating an XsltSettings
object and passing it to the Load method.
|
|
|
|