Class ModuleOwnerRecordData
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the ModuleOwner table.
Inherited Members
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class ModuleOwnerRecordData
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Constructors
ModuleOwnerRecordData()
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the ModuleOwner table.
Declaration
public ModuleOwnerRecordData()
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Fields
AdminWarningDate
When should nagging begin (for instance, during login to SoAdmin)
Declaration
public DateTime AdminWarningDate
Field Value
Type | Description |
---|---|
DateTime |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
DeploymentType
Type of deployment
Declaration
public int DeploymentType
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
EncryptedCheck
Encrypted checksum that stops tampering and copying between databases
Declaration
public string EncryptedCheck
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Expiration
Expiration date, 0 = forever
Declaration
public DateTime Expiration
Field Value
Type | Description |
---|---|
DateTime |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
ExtraFlags
Unspecified extra flags of license, part of checksum
Declaration
public uint ExtraFlags
Field Value
Type | Description |
---|---|
uint |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
ExtraInfo
Free field, can be used by the module owner (example: host domain, for eJournal)
Declaration
public string ExtraInfo
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
GraceTo
Real expiration date, when the given module actually stops working. Modules that normally update data should switch to read-only mode. Modules that only read anyway, should disable themselves in some other way
Declaration
public DateTime GraceTo
Field Value
Type | Description |
---|---|
DateTime |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
LicenseUrl
The url that will provide keycodes for all modules owned by this owner
Declaration
public string LicenseUrl
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
LicenseVersion
The url that will provide keycodes for all modules owned by this owner
Declaration
public string LicenseVersion
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
MaintenanceTo
Expiration date for maintenance. After this date, upgrades should refuse to install.
Declaration
public DateTime MaintenanceTo
Field Value
Type | Description |
---|---|
DateTime |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
ModuleOwnerId
Primary key
Declaration
public int ModuleOwnerId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
NextCheckDate
When should the system next check with the license issuer
Declaration
public DateTime NextCheckDate
Field Value
Type | Description |
---|---|
DateTime |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
OwnerDescription
Human-readable description of owner, shown in GUI, default language. Additional languages can be added to LocaleText, resource type 26
Declaration
public string OwnerDescription
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
OwnerName
The name of the module owner, not visible in GUI but used in the code. OwnerName SUPEROFFICE is reserved and may NEVER be used by partners. This must be in UPPER CASE and only contain A-Z and 0-9. NO EXTENDED CHARACTERS please.
Declaration
public string OwnerName
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
ProductType
Type of product
Declaration
public string ProductType
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
ProductTypeDescription
Description of type of product
Declaration
public string ProductTypeDescription
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Registered
Registered when in UTC.
Declaration
public DateTime Registered
Field Value
Type | Description |
---|---|
DateTime |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
RegisteredAssociateId
Registered by whom
Declaration
public int RegisteredAssociateId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Signature
Signature of all non-zero-amount moduleLicense rows referring to this owner
Declaration
public string Signature
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
SignedPublicKey
The public key used to verify licenses owned by this owner
Declaration
public Stream SignedPublicKey
Field Value
Type | Description |
---|---|
Stream |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Updated
Last updated when in UTC.
Declaration
public DateTime Updated
Field Value
Type | Description |
---|---|
DateTime |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
UpdatedAssociateId
Last updated by whom
Declaration
public int UpdatedAssociateId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
UpdatedCount
Number of updates made to this record
Declaration
public short UpdatedCount
Field Value
Type | Description |
---|---|
short |
Remarks
Please use this class instead of a full ModuleOwnerRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ModuleOwnerTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.