Click or drag to resize

ProcessorParseRecords Method (String, String, String, String)

Uses the specified report file to parse and extract records.

Namespace:  Opait.ReportMiner.Api
Assembly:  Opait.ReportMiner (in Opait.ReportMiner.dll) Version: 1.9.4.12917
Syntax
C#
public IEnumerable<IRecord> ParseRecords(
	string modelFile,
	string reportFile = null,
	string pluginDll = null,
	string password = null
)

Parameters

modelFile
Type: SystemString
The path to the saved model file.
reportFile (Optional)
Type: SystemString
The path to the report file. If null, use the model's sample report file.
pluginDll (Optional)
Type: SystemString
The path to an optional plugin DLL to post-process the extracted data.
password (Optional)
Type: SystemString
The optional password used to open the report file.

Return Value

Type: IEnumerableIRecord
An enumerable list of detected records.
See Also