C# Class BlogTalkRadio.Tools.CFT.TransformationTask

Show file Open project: benjamine/CFT Class Usage Examples

Public Methods

Method Description
Execute ( string destinationFilePath ) : void

Make transformation of file SourceFilePath with transform file TransformFile to destinationFilePath.

TransformationTask ( ) : System

Initializes a new instance of the TransformationTask class.

Uses the TraceTransformationLogger as the default logger.

TransformationTask ( IXmlTransformationLogger transformationLogger ) : System

Initializes a new instance of the TransformationTask class.

TransformationTask ( string sourceFilePath, string transformFilePath ) : System

Create new TransformationTask object and set values for SourceFilePath and TransformFile

Method Details

Execute() public method

Make transformation of file SourceFilePath with transform file TransformFile to destinationFilePath.
public Execute ( string destinationFilePath ) : void
destinationFilePath string File path of destination transformation.
return void

TransformationTask() public method

Initializes a new instance of the TransformationTask class.
Uses the TraceTransformationLogger as the default logger.
public TransformationTask ( ) : System
return System

TransformationTask() public method

Initializes a new instance of the TransformationTask class.
public TransformationTask ( IXmlTransformationLogger transformationLogger ) : System
transformationLogger IXmlTransformationLogger The transformation logger.
return System

TransformationTask() public method

Create new TransformationTask object and set values for SourceFilePath and TransformFile
public TransformationTask ( string sourceFilePath, string transformFilePath ) : System
sourceFilePath string Source file path
transformFilePath string Transformation file path
return System