XslCompiledTransform::Transform Method (String^, XmlWriter^)
Executes the transform using the input document specified by the URI and outputs the results to an XmlWriter.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- inputUri
-
Type:
System::String^
The URI of the input document.
- 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.
| Exception | Condition |
|---|---|
| ArgumentNullException | The inputUri or results value is null. |
| XsltException | There was an error executing the XSLT transform. |
| DirectoryNotFoundException | The inputUri value includes a filename or directory cannot be found. |
| WebException | The inputUri value cannot be resolved. -or- An error occurred while processing the request. |
| UriFormatException | inputUri is not a valid URI. |
| XmlException | There was a parsing error loading the input document. |
This method uses a default XmlUrlResolver with no user credentials to resolve the input document and any instances of the XSLT document() function found in the style sheet. If any of these resources are located on a network resource that requires authentication, use the overload that takes an XmlResolver as one of its arguments and specify an XmlResolver with the necessary credentials.
An XmlReader with default settings is used to load the input document. DTD processing is disabled on the XmlReader. If you require DTD processing, create an XmlReader with this feature enabled, and pass it to the Transform method.
This method does not support the xsl:strip-space element. If your compiled style sheet included the xsl:strip-space element, you must use the Transform overload which takes an XmlReader as the input argument.
Available since 2.0