Skip to main content

.Net SDK Integration

The TIM API uses two different types of automatisms:

Pre-Automatisms

Actions performed automatically before a function can be called. For example, a transaction can be called in disconnected state without having called connect, login, and activate in advance. These are called automatically by the TIM API.

Pre-Automatisms are enabled by default and cannot be disabled.

Integration Steps

1
Create Terminal Settings

Create TerminalSettings and initialize connection parameters (see Setup Configuration)

2
Create Terminal Instance

Create Terminal instance using the created TerminalSettings

3
Set Properties

Set some properties where required:

4
Connect and Login

Connect and Login. This can be done automatically, when the first terminal operation is called or manually using the login method.

5
Use Terminal Operations

Execute terminal operation functions as needed.

Post-Automatisms

Actions triggered after an operation has been performed. Controlled by:

SettingDescription
auto_commitAutomatically performs a commit after a transaction
fetch_brandsAutomatically calls application_information after connect

Both are enabled by default.