XslCompiledTransform::Transform Method (String^, XsltArgumentList^, TextWriter^)
Executes the transform using the input document specified by the URI and outputs the results to a TextWriter.
Assembly: System.Xml (in System.Xml.dll)
public: void Transform( String^ inputUri, XsltArgumentList^ arguments, TextWriter^ results )
Parameters
- inputUri
-
Type:
System::String^
The URI of 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.IO::TextWriter^
The TextWriter to which you want to output.
| 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.
Available since 2.0