For the complete documentation index, see llms.txt. This page is also available as Markdown.

Transform

Transforms XML using XSLT. The XSLT version 1.0, 2.0, or 3.0 is determined by the version attribute in the stylesheet element. The version attribute is required.

Task version: 2.3.0

Required Frends version: 5.5+

Required .NET version: 6.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

XML : String

XML to transform.

Default: - Example: ...

XSLT : String

XSLT transformation. The XSLT version (1.0, 2.0, or 3.0) is determined by the version attribute in the stylesheet element. The version attribute is required.

Default: - Example: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:template match="/"> <xsl:value-of select="//item"/> </xsl:template> </xsl:stylesheet>

XSLTParameters : XSLTParameter[]

XSLT parameters.

Default: - Example: [ { Name = "param", Value = "foo" }, { Name = "param2", Value = "bar" } ]

Task Result

Name
Description

XML : String

Result of XSLT transformation. Example: ...

Task Changelog

Changelog is not available for this Task.

Last updated

Was this helpful?