C# Class HandCoded.Meta.IndirectConversion

The IndirectConversion is used to chain multiple transformations together to create a multi-stage transformation. IndirectConversion instances are created during the search process to find a conversion path between two releases.
Inheritance: Conversion
Mostra file Open project: formicary/fpml-toolkit-csharp Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Convert ( XmlDocument document, IHelper helper ) : XmlDocument

Applies the IndirectConversion to a XmlDocument instance to create a new XmlDocument.

IndirectConversion ( Conversion first, Conversion second ) : System

Constructs a IndirectConversion instance that connects two other Conversion instances.

ToString ( ) : string

Converts the state of the instance to a string.

Method Details

Convert() public method

Applies the IndirectConversion to a XmlDocument instance to create a new XmlDocument.
public Convert ( XmlDocument document, IHelper helper ) : XmlDocument
document System.Xml.XmlDocument The to be converted.
helper IHelper A used to guide conversion.
return System.Xml.XmlDocument

IndirectConversion() public method

Constructs a IndirectConversion instance that connects two other Conversion instances.
public IndirectConversion ( Conversion first, Conversion second ) : System
first Conversion The first to apply.
second Conversion The second to apply.
return System

ToString() public method

Converts the state of the instance to a string.
public ToString ( ) : string
return string