NOTE: This class is now obsolete.

This class has been deprecated. Please use Mvp.Xml.Common.Xsl.MvpXslTransform instead.


Transforms XML data using an XSLT stylesheet. Supports a number of EXSLT as defined at http://www.exslt.org

Namespace: Mvp.Xml.Exslt
Assembly: Mvp.Xml (in Mvp.Xml.dll)

Syntax

Visual Basic (Declaration)
Public Class ExsltTransform
C#
public class ExsltTransform
C++
ref class ExsltTransform
J#
public class ExsltTransform
JScript
public class ExsltTransform

Remarks

XslCompiledTransform supports the XSLT 1.0 syntax. The XSLT stylesheet must use the namespace http://www.w3.org/1999/XSL/Transform. Additional arguments can also be added to the stylesheet using the XsltArgumentList class. This class contains input parameters for the stylesheet and extension objects which can be called from the stylesheet. This class also recognizes functions from the following namespaces:
* http://exslt.org/common
* http://exslt.org/dates-and-times
* http://exslt.org/math
* http://exslt.org/random
* http://exslt.org/regular-expressions
* http://exslt.org/sets
* http://exslt.org/strings
* http://gotdotnet.com/exslt/dates-and-times
* http://gotdotnet.com/exslt/math
* http://gotdotnet.com/exslt/regular-expressions
* http://gotdotnet.com/exslt/sets
* http://gotdotnet.com/exslt/strings
* http://gotdotnet.com/exslt/dynamic

Inheritance Hierarchy

System.Object
   Mvp.Xml.Exslt.ExsltTransform

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also