XslCompiledTransform::Transform Method (XmlReader^, XsltArgumentList^, XmlWriter^, XmlResolver^)
Executes the transform using the input document specified by the XmlReader object and outputs the results to an XmlWriter. The XsltArgumentList provides additional run-time arguments and the XmlResolver resolves the XSLT document() function.
Assembly: System.Xml (in System.Xml.dll)
public: void Transform( XmlReader^ input, XsltArgumentList^ arguments, XmlWriter^ results, XmlResolver^ documentResolver )
Parameters
- input
-
Type:
System.Xml::XmlReader^
An XmlReader containing the input document.
- arguments
-
Type:
System.Xml.Xsl::XsltArgumentList^
An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be null.
- results
-
Type:
System.Xml::XmlWriter^
The XmlWriter to which you want to output.
If the style sheet contains an xsl:output element, you should create the XmlWriter using the XmlWriterSettings object returned from the OutputSettings property. This ensures that the XmlWriter has the correct output settings.
- documentResolver
-
Type:
System.Xml::XmlResolver^
The XmlResolver used to resolve the XSLT document() function. If this is null, the document() function is not resolved.
| Exception | Condition |
|---|---|
| ArgumentNullException | The input or results value is null. |
| XsltException | There was an error executing the XSLT transform. |
The following example uses an XmlSecureResolver to resolve the XSLT document() function.
Available since 2.0