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

ConvertToXML

Converts CSV string content to XML string.

Task version: 1.5.0

Required Frends version: 5.5+

Required .NET version: 6.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

Csv : String

Input csv string

Default: - Example: 1;Foo;Bar

Delimiter : String

Delimiter.

Default: ; Example: ;

ColumnSpecifications : ColumnSpecification[]

You can map columns to specific types.

The order of the columns are used for mapping, that means that the ColumnSpecification elements need to be created in the same order as the CSV fields.

Default: - Example: [ { foo, String } ]

Task Result

Name
Description

Success : Boolean

Operation complete without errors. Example: true

Xml : String

Result as XML. Example: "\r\n\r\n \r\n 1\r\n foo\r\n bar\r\n\r\n"

Task Changelog

Changelog for Task Frends.CSV.ConvertToXML.

[1.5.0] - 2026-01-21

Added

  • Add options to fix illegal node names. The default behavior is throwing an error if the node name is invalid.

[1.4.0] - 2025-12-29

Added

  • Add option to ignore quotes.

[1.3.0] - 2025-12-05

Changed

  • Update package CsvHelper to version 33.1.0.

[1.2.0] - 2025-10-06

Changed

  • Updated Repository link in the metadata.

[1.1.0] - 2024-08-20

Added

  • Updated NewtonSoft.Json to the latest version 13.0.3.

[1.0.0] - 2023-08-24

Added

  • Initial implementation

Last updated

Was this helpful?