Interface IScraperCsvConverter
Interface that must be implemented by account statement CSV to CAMT converters.
Namespace: Subsembly.Scraper
Assembly: Subsembly.Scraper.dll
Syntax
public interface IScraperCsvConverter
Properties
FileNameSuffix
The preferred file name suffix of this converter.
Declaration
string FileNameSuffix { get; }
Property Value
Type | Description |
---|---|
System.String |
Name
User friendly name of this converter.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Convert(out SepaStatement, Byte[], Int32, Int32)
Converts a raw, binary CSV data blob that contains account statement data to a CAMT statement for further processing.
Declaration
ScraperResult Convert(out SepaStatement aStmt, byte[] vbCsvData, int nOffset, int nLength)
Parameters
Type | Name | Description |
---|---|---|
SepaStatement | aStmt | The converted CAMT statement for further processing. The output is |
System.Byte[] | vbCsvData | Raw, binary CSV data blob that contains the account statement data. Must not be
|
System.Int32 | nOffset | Start position in byte array where the CSV data starts. |
System.Int32 | nLength | Length of CSV data in side of byte array. |
Returns
Type | Description |
---|---|
ScraperResult |