Transforms the XML data in the System.Xml.XPath.IXPathNavigable using the specified args and outputs the result to an System.Xml.XmlWriter.
- input
- An object implementing the System.Xml.XPath.IXPathNavigable interface. In the .NET Framework, this can be either an System.Xml.XmlNode (typically an System.Xml.XmlDocument), or an System.Xml.XPath.XPathDocument containing the data to be transformed.
- args
- An System.Xml.Xsl.XsltArgumentList containing the namespace-qualified arguments used as input to the transformation.
- output
- The System.Xml.XmlWriter to which you want to output.
The System.Xml.Xsl.XslTransform class is obsolete in the .NET Framework version 2.0. The System.Xml.Xsl.XslCompiledTransform class is the new XSLT processor. For more information, see Using the XslCompiledTransform Class and Migrating From the XslTransform Class.
System.Xml.Xsl.XslTransform supports the XSLT 1.0 syntax. The XSLT style sheet must include the namespace declaration xmlns:xsl= http://www.w3.org/1999/XSL/Transform.
This method is now obsolete. The setting of the XslTransform.XmlResolver property determines how the XSLT document() function is resolved. The recommended practice is to use the erload:System.Xml.Xsl.XslTransform.Transform method which takes an System.Xml.XmlResolver object as one of its arguments.
The args are matched with the xsl:param elements defined in the style sheet. The xsl:output element is not supported when outputting to an System.Xml.XmlWriter (xsl:output is ignored). See Outputs from an XslTransform for more information.
Transformations apply to the document as a whole. In other words, if you pass in a node other than the document root node, this does not prevent the transformation process from accessing all nodes in the loaded document. To transform a node fragment, you must create an System.Xml.XmlDocument containing just the node fragment and pass that System.Xml.XmlDocument to the XslTransform.Transform(System.Xml.XPath.IXPathNavigable, XsltArgumentList, System.Xml.XmlWriter) method.
The following example performs a transformation on a node fragment.
Example
XslTransform xslt = new XslTransform(); xslt.Load("print_root.xsl"); XmlDocument doc = new XmlDocument(); doc.Load("library.xml"); // Create a new document containing just the node fragment. XmlNode testNode = doc.DocumentElement.FirstChild; XmlDocument tmpDoc = new XmlDocument(); tmpDoc.LoadXml(testNode.OuterXml); // Pass the document containing the node fragment // to the Transform method. Console.WriteLine("Passing " + tmpDoc.OuterXml + " to print_root.xsl"); xslt.Transform(tmpDoc, null, Console.Out);
The example uses the library.xml and print_root.xsl files as input and outputs the following to the console.
Example
Passing <book genre="novel" ISBN="1-861001-57-5"><title>Pride And Prejudice</title></book> to print_root.xsl Root node is book.
library.xml
Example
<library> <book genre='novel' ISBN='1-861001-57-5'> <title>Pride And Prejudice</title> </book> <book genre='novel' ISBN='1-81920-21-2'> <title>Hook</title> </book> </library>
print_root.xsl
Example
<style sheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform" > <output method="text" /> <template match="/"> Root node is <value-of select="local-name(//*[position() = 1])" /> </template> </style sheet>