Class ScraperFinTS

Namespace
Subsembly.Scraper.FinTS
Assembly
Subsembly.Scraper.FinTS.dll
public class ScraperFinTS : Scraper, IScraper
Inheritance
ScraperFinTS
Implements
Inherited Members

Constructors

ScraperFinTS(int)

public ScraperFinTS(int nPriority = 1)

Parameters

nPriority int

The priority of the scraper relative to the other scrapers. By default the SCRAPERPRIORITY_FINTS places the ScraperFinTS at the end of the list. It may be desireable to use SCRAPERPRIORITY_HIGH, to put the ScraperFinTS at the front of the list.

Fields

SCRAPERPRIORITY_FINTS

The default priority places the ScraperFinTS at the end of the list. This makes it a fall-back that is only considered, when none of the other scrapers do handle an account.

public const int SCRAPERPRIORITY_FINTS = 1

Field Value

int

Properties

ProductRegisterNo

public static string ProductRegisterNo { get; set; }

Property Value

string

ProductVersion

public static string ProductVersion { get; set; }

Property Value

string

Methods

OnCreateScraperContact(SepaAccount)

public override IScraperContact OnCreateScraperContact(SepaAccount aAcct)

Parameters

aAcct SepaAccount

Returns

IScraperContact

Register(int)

Registers the ScraperFinTS.

public static void Register(int nPriority = 1)

Parameters

nPriority int

The priority of the scraper relative to the other scrapers. By default the SCRAPERPRIORITY_FINTS places the ScraperFinTS at the end of the list. It may be desireable to use SCRAPERPRIORITY_HIGH, to put the ScraperFinTS at the front of the list.

Remarks

The FinTS scraper is not registered by default, but must be registered explicitly by calling this method. If this method is called, then the built-in scrapers will not be registered automatically. If a clients wants to use the built-in scrapers and FinTS, it has to call both:

ScraperService.RegisterBuiltInScrapers();
ScraperFinTS.Register();