Class PasswordRulesTableInfo
Table 'password_rules': This table may contain one entry specifying rules for passwords.
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("password_rules")]
public class PasswordRulesTableInfo : TableInfo, ICloneable
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling
Fields
DictionaryTableName
Conceptual name of table PasswordRules in the database dictionary: password_rules
Declaration
public const string DictionaryTableName = "password_rules"
Field Value
Type | Description |
---|---|
String |
Properties
Definition
Definition of the table as described in the deployed runtime dictionary
Declaration
public override SoTable Definition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Overrides
DictionaryTableNumber
Table number for table PasswordRules in the database dictionary; potentially changes between databases, but always the same over the lifetime of any single database
Declaration
public int DictionaryTableNumber { get; }
Property Value
Type | Description |
---|---|
Int32 |
Flags
Field 'flags' in table 'password_rules': Dictionary type Int, .NET type: Int32
Bitmask for flags
Declaration
public Int32FieldInfo Flags { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
MinCharacters
Field 'min_characters' in table 'password_rules': Dictionary type Int, .NET type: Int32
The minimum number of characters in the password in order to be valid.
Declaration
public Int32FieldInfo MinCharacters { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
MinLowercase
Field 'min_lowercase' in table 'password_rules': Dictionary type Int, .NET type: Int32
The minimum number of lowercase characters in the password in order to be valid.
Declaration
public Int32FieldInfo MinLowercase { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
MinNumbers
Field 'min_numbers' in table 'password_rules': Dictionary type Int, .NET type: Int32
The minimum number of numbers in the password in order to be valid.
Declaration
public Int32FieldInfo MinNumbers { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
MinSpecial
Field 'min_special' in table 'password_rules': Dictionary type Int, .NET type: Int32
The minimum number of special characters in the password in order to be valid.
Declaration
public Int32FieldInfo MinSpecial { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
MinUppercase
Field 'min_uppercase' in table 'password_rules': Dictionary type Int, .NET type: Int32
The minimum number of uppercase characters in the password in order to be valid.
Declaration
public Int32FieldInfo MinUppercase { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
PasswordRulesId
Field 'id' in table 'password_rules': Dictionary type PK, .NET type: Int32
The primary key (auto-incremented)
Declaration
public Int32FieldInfo PasswordRulesId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
RuntimeDefinition
Definition of the table as described in the deployed runtime dictionary
Declaration
[Obsolete("Use instance property Definition or static member DictionaryTableNumber", true)]
public static SoTable RuntimeDefinition { get; }
Property Value
Type | Description |
---|---|
SoTable |