System::Xml::Xsl::XslCompiledTransform::Transform method
XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable>&, const SharedPtr<XmlWriter>&) method
Executes the transform using the input document specified by the IXPathNavigable object and outputs the results to an XmlWriter.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable> &input, const SharedPtr<XmlWriter> &results)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<System::Xml::XPath::IXPathNavigable>& | An object implementing the IXPathNavigable interface. It can be either an XmlNode (typically an XmlDocument), or an XPathDocument containing the data to be transformed. |
results | const SharedPtr<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 XslCompiledTransform::get_OutputSettings value. This ensures that the XmlWriter has the correct output settings. |
See Also
- Typedef SharedPtr
- Class IXPathNavigable
- Class XmlWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable>&, const SharedPtr<XsltArgumentList>&, const SharedPtr<IO::Stream>&) method
Executes the transform using the input document specified by the IXPathNavigable object and outputs the results to a stream. The XsltArgumentList provides additional runtime arguments.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable> &input, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<IO::Stream> &results)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<System::Xml::XPath::IXPathNavigable>& | An object implementing the IXPathNavigable interface. It can be either an XmlNode (typically an XmlDocument), or an XPathDocument containing the data to be transformed. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<IO::Stream>& | The stream to which you want to output. |
See Also
- Typedef SharedPtr
- Class IXPathNavigable
- Class XsltArgumentList
- Class Stream
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable>&, const SharedPtr<XsltArgumentList>&, const SharedPtr<IO::TextWriter>&) method
Executes the transform using the input document specified by the IXPathNavigable object and outputs the results to an TextWriter. The XsltArgumentList provides additional run-time arguments.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable> &input, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<IO::TextWriter> &results)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<System::Xml::XPath::IXPathNavigable>& | An object implementing the IXPathNavigable interface. It can be either an XmlNode (typically an XmlDocument), or an XPathDocument containing the data to be transformed. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<IO::TextWriter>& | The TextWriter to which you want to output. |
See Also
- Typedef SharedPtr
- Class IXPathNavigable
- Class XsltArgumentList
- Class TextWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable>&, const SharedPtr<XsltArgumentList>&, const SharedPtr<XmlWriter>&) method
Executes the transform using the input document specified by the IXPathNavigable object and outputs the results to an XmlWriter. The XsltArgumentList provides additional run-time arguments.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable> &input, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<XmlWriter> &results)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<System::Xml::XPath::IXPathNavigable>& | An object implementing the IXPathNavigable interface. It can be either an XmlNode (typically an XmlDocument), or an XPathDocument containing the data to be transformed. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<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 XslCompiledTransform::get_OutputSettings value. This ensures that the XmlWriter has the correct output settings. |
See Also
- Typedef SharedPtr
- Class IXPathNavigable
- Class XsltArgumentList
- Class XmlWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable>&, const SharedPtr<XsltArgumentList>&, const SharedPtr<XmlWriter>&, const SharedPtr<XmlResolver>&) method
Executes the transform by using the input document that is specified by the IXPathNavigable object and outputs the results to an XmlWriter. The XsltArgumentList provides additional run-time arguments and the XmlResolver resolves the XSLT document() function.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<System::Xml::XPath::IXPathNavigable> &input, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<XmlWriter> &results, const SharedPtr<XmlResolver> &documentResolver)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<System::Xml::XPath::IXPathNavigable>& | The document to transform that is specified by the IXPathNavigable object. |
arguments | const SharedPtr<XsltArgumentList>& | Argument list as XsltArgumentList. |
results | const SharedPtr<XmlWriter>& | The XmlWriter to which you want to output. If the style sheet contains an xsl:output element, you should create the XmlWriter by using the XmlWriterSettings object that is returned from the XslCompiledTransform::get_OutputSettings value. This ensures that the XmlWriter has the correct output settings. |
documentResolver | const SharedPtr<XmlResolver>& | The XmlResolver used to resolve the XSLT document() function. If this is nullptr, the document() function is not resolved. |
See Also
- Typedef SharedPtr
- Class IXPathNavigable
- Class XsltArgumentList
- Class XmlWriter
- Class XmlResolver
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<XmlReader>&, const SharedPtr<XmlWriter>&) method
Executes the transform using the input document specified by the XmlReader object and outputs the results to an XmlWriter.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<XmlReader> &input, const SharedPtr<XmlWriter> &results)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<XmlReader>& | The XmlReader containing the input document. |
results | const SharedPtr<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 XslCompiledTransform::get_OutputSettings value. This ensures that the XmlWriter has the correct output settings. |
See Also
- Typedef SharedPtr
- Class XmlReader
- Class XmlWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<XmlReader>&, const SharedPtr<XsltArgumentList>&, const SharedPtr<IO::Stream>&) method
Executes the transform using the input document specified by the XmlReader object and outputs the results to a stream. The XsltArgumentList provides additional run-time arguments.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<XmlReader> &input, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<IO::Stream> &results)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<XmlReader>& | An XmlReader containing the input document. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<IO::Stream>& | The stream to which you want to output. |
See Also
- Typedef SharedPtr
- Class XmlReader
- Class XsltArgumentList
- Class Stream
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<XmlReader>&, const SharedPtr<XsltArgumentList>&, const SharedPtr<IO::TextWriter>&) method
Executes the transform using the input document specified by the XmlReader object and outputs the results to a TextWriter. The XsltArgumentList provides additional run-time arguments.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<XmlReader> &input, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<IO::TextWriter> &results)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<XmlReader>& | An XmlReader containing the input document. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<IO::TextWriter>& | The TextWriter to which you want to output. |
See Also
- Typedef SharedPtr
- Class XmlReader
- Class XsltArgumentList
- Class TextWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<XmlReader>&, const SharedPtr<XsltArgumentList>&, const SharedPtr<XmlWriter>&) method
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.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<XmlReader> &input, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<XmlWriter> &results)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<XmlReader>& | An XmlReader containing the input document. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<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 XslCompiledTransform::get_OutputSettings value. This ensures that the XmlWriter has the correct output settings. |
See Also
- Typedef SharedPtr
- Class XmlReader
- Class XsltArgumentList
- Class XmlWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const SharedPtr<XmlReader>&, const SharedPtr<XsltArgumentList>&, const SharedPtr<XmlWriter>&, const SharedPtr<XmlResolver>&) method
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.
void System::Xml::Xsl::XslCompiledTransform::Transform(const SharedPtr<XmlReader> &input, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<XmlWriter> &results, const SharedPtr<XmlResolver> &documentResolver)
Parameter | Type | Description |
---|---|---|
input | const SharedPtr<XmlReader>& | An XmlReader containing the input document. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<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 XslCompiledTransform::get_OutputSettings value. This ensures that the XmlWriter has the correct output settings. |
documentResolver | const SharedPtr<XmlResolver>& | The XmlResolver used to resolve the XSLT document() function. If this is nullptr, the document() function is not resolved. |
See Also
- Typedef SharedPtr
- Class XmlReader
- Class XsltArgumentList
- Class XmlWriter
- Class XmlResolver
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const String&, const SharedPtr<XmlWriter>&) method
Executes the transform using the input document specified by the URI and outputs the results to an XmlWriter.
void System::Xml::Xsl::XslCompiledTransform::Transform(const String &inputUri, const SharedPtr<XmlWriter> &results)
Parameter | Type | Description |
---|---|---|
inputUri | const String& | The URI of the input document. |
results | const SharedPtr<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 XslCompiledTransform::get_OutputSettings value. This ensures that the XmlWriter has the correct output settings. |
See Also
- Class String
- Typedef SharedPtr
- Class XmlWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const String&, const SharedPtr<XsltArgumentList>&, const SharedPtr<IO::Stream>&) method
Executes the transform using the input document specified by the URI and outputs the results to stream. The XsltArgumentList provides additional run-time arguments.
void System::Xml::Xsl::XslCompiledTransform::Transform(const String &inputUri, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<IO::Stream> &results)
Parameter | Type | Description |
---|---|---|
inputUri | const String& | The URI of the input document. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<IO::Stream>& | The stream to which you want to output. |
See Also
- Class String
- Typedef SharedPtr
- Class XsltArgumentList
- Class Stream
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const String&, const SharedPtr<XsltArgumentList>&, const SharedPtr<IO::TextWriter>&) method
Executes the transform using the input document specified by the URI and outputs the results to a TextWriter.
void System::Xml::Xsl::XslCompiledTransform::Transform(const String &inputUri, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<IO::TextWriter> &results)
Parameter | Type | Description |
---|---|---|
inputUri | const String& | The URI of the input document. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<IO::TextWriter>& | The TextWriter to which you want to output. |
See Also
- Class String
- Typedef SharedPtr
- Class XsltArgumentList
- Class TextWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const String&, const SharedPtr<XsltArgumentList>&, const SharedPtr<XmlWriter>&) method
Executes the transform using the input document specified by the URI and outputs the results to an XmlWriter. The XsltArgumentList provides additional run-time arguments.
void System::Xml::Xsl::XslCompiledTransform::Transform(const String &inputUri, const SharedPtr<XsltArgumentList> &arguments, const SharedPtr<XmlWriter> &results)
Parameter | Type | Description |
---|---|---|
inputUri | const String& | The URI of the input document. |
arguments | const SharedPtr<XsltArgumentList>& | An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. This value can be nullptr. |
results | const SharedPtr<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 XslCompiledTransform::get_OutputSettings value. This ensures that the XmlWriter has the correct output settings. |
See Also
- Class String
- Typedef SharedPtr
- Class XsltArgumentList
- Class XmlWriter
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++
XslCompiledTransform::Transform(const String&, const String&) method
Executes the transform using the input document specified by the URI and outputs the results to a file.
void System::Xml::Xsl::XslCompiledTransform::Transform(const String &inputUri, const String &resultsFile)
Parameter | Type | Description |
---|---|---|
inputUri | const String& | The URI of the input document. |
resultsFile | const String& | The URI of the output file. |
See Also
- Class String
- Class XslCompiledTransform
- Namespace System::Xml::Xsl
- Library Aspose.PDF for C++