Represents the Session-Independent part of License management system.

LicenseManagerBase is designed to be a singleton object. It holds the license information for the entire Cartella instance. It is also in charge of authentication/unauthentication of users.

Please note that LicenseManagerBase is only in charge of holding the licensing information. Assignments of user/seats is done by its user specific counter part - LicenseManager. It takes a actual user to do the actual licensing works.

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public interface ILicenseManagerBase
Visual Basic
Public Interface ILicenseManagerBase
Visual C++
public interface class ILicenseManagerBase

Remarks

Cartella Lincense is tied to specific product version and database connection. License must be re-issued by Ingeniux Corporation during major product upgrade, or database migration.

Cartella licensing model only allows one on-going connection per users. If the same user login to Cartella again, then the user's previous session will be automatically invalidated.

See Also