Class Transform
Represents a single report transformation from XML.
public class Transform
- Inheritance
-
Transform
- Inherited Members
Constructors
Transform(string, string, Action<XElement, string>)
Represents a single report transformation from XML.
public Transform(string id, string description, Action<XElement, string> outputHandler)
Parameters
idstringThe transform ID
descriptionstringThe transform description
outputHandlerAction<XElement, string>The handler which will write the v2 XML to the given file
Properties
Description
Gets description of the transformation. Suitable for displaying to end users.
public string Description { get; }
Property Value
ID
Gets the transform ID.
public string ID { get; }
Property Value
OutputHandler
Gets the output handler for the transformation. Converts XML to a file on the file system.
public Action<XElement, string> OutputHandler { get; }