• API Overview
  • EBICS API
  • FinTS API
  • XS2A API
  • SEPA API
Search Results for

    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 null if the conversion was not successful. If the method returns with success, then the output must reference a new SepaStatement.

    System.Byte[] vbCsvData

    Raw, binary CSV data blob that contains the account statement data. Must not be null, but may be empty.

    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
    In This Article
    Back to top Copyright 2009-2025 Subsembly GmbH