FileTransformEngineTSource, TDestination Methods |
The FileTransformEngineTSource, TDestination generic type exposes the following members.
Name | Description | |
---|---|---|
![]() | ReadAndTransformRecords |
Transform a file that contains source records to an array of the destination type
|
![]() | TransformFile |
Transform the contents of the sourceFile and write them to the
destFile.(use only if you need the array of the transformed
records, TransformFileFast is faster)
|
![]() | TransformFileFast(TextReader, StreamWriter) |
Transform the contents of the sourceFile and write them to the
destFile. (faster and uses less memory, best choice for big
files)
|
![]() | TransformFileFast(TextReader, String) |
Transform the contents of the sourceFile and write them to the
destFile. (faster and uses less memory, best choice for big
files)
|
![]() | TransformFileFast(String, StreamWriter) |
Transform the contents of the sourceFile and write them to the
destFile. (faster and uses less memory, best choice for big
files)
|
![]() | TransformFileFast(String, String) |
Transform the contents of the sourceFile and write them to the
destFile. (faster and uses less memory, best choice for big
files)
|
![]() | TransformRecords |
Transforms an array of records from the source type to the destination type
|