Class ScraperFinTS
Implements
Inherited Members
Namespace: Subsembly.Scraper.FinTS
Assembly: Subsembly.Scraper.FinTS.dll
Syntax
public class ScraperFinTS : Scraper, IScraper
Constructors
ScraperFinTS(int)
Declaration
public ScraperFinTS(int nPriority = 1)
Parameters
Type | Name | Description |
---|---|---|
int | nPriority | 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.
Declaration
public const int SCRAPERPRIORITY_FINTS = 1
Field Value
Type | Description |
---|---|
int |
Properties
ProductRegisterNo
Declaration
public static string ProductRegisterNo { get; set; }
Property Value
Type | Description |
---|---|
string |
ProductVersion
Declaration
public static string ProductVersion { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
OnCreateScraperContact(SepaAccount)
Declaration
public override IScraperContact OnCreateScraperContact(SepaAccount aAcct)
Parameters
Type | Name | Description |
---|---|---|
SepaAccount | aAcct |
Returns
Type | Description |
---|---|
IScraperContact |
Overrides
Register(int)
Registers the ScraperFinTS.
Declaration
public static void Register(int nPriority = 1)
Parameters
Type | Name | Description |
---|---|---|
int | nPriority | 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();