Show / Hide Table of Contents

Class UDContactSmallRow

User-defined fields for contact
Row Object for table 'udcontactSmall'. Row objects correspond directly to database tables, and one instance of a row object represents one row in the corresponding table in the database.

Inheritance
Object
SqlCommand
PrivateSave
TableRowBase
UDContactSmallRow
Implements
INestedPersist
ISoDataLookup
ISentryIgnorable
ISoItem
Inherited Members
TableRowBase._saveOwner
TableRowBase._sentries
TableRowBase._onValueChange
TableRowBase._relatedNestedPersistMembers
TableRowBase._sqlType
TableRowBase.InternalSetValue(Int32, Object)
TableRowBase.InternalSetValue(SoField, Object)
TableRowBase.GetFieldValue(FieldInfo)
TableRowBase.GetKnownFields()
TableRowBase.ISoDataLookup.GetPersistedFieldValue(FieldInfo)
TableRowBase.ISoDataLookup.IsPersistedFieldValueKnown(FieldInfo)
TableRowBase.IsGhostField(FieldInfo)
TableRowBase.RowLoad()
TableRowBase.RowLoad(ITableRowLoadHandler)
TableRowBase.OnLoaded(IdxBase)
TableRowBase.Load(IdxBase, SoDataReader)
TableRowBase.Load(SoDataReader, TableInfo)
TableRowBase.SetDefaults()
TableRowBase.SetDefaults(DashboardTileDefinitionRow, String)
TableRowBase.SetSaveOwner(INestedPersist)
TableRowBase.Save()
TableRowBase.Delete()
TableRowBase.Validate()
TableRowBase.SetDirty(Int32, Object, Object)
TableRowBase.INestedPersist.OnPreIdUpdate()
TableRowBase.INestedPersist.OnPrimaryKeyRequest(PKContainer)
TableRowBase.INestedPersist.OnPrimaryKeyUpdate(PKContainer)
TableRowBase.INestedPersist.OnIdUpdate()
TableRowBase.INestedPersist.OnSave(BatchSave)
TableRowBase.INestedPersist.OnSaved(Boolean)
TableRowBase.OnPreIdUpdate()
TableRowBase.OnPrimaryKeyRequest(PKContainer)
TableRowBase.OnPrimaryKeyUpdate(PKContainer)
TableRowBase.OnIdUpdate()
TableRowBase.BeginIgnoreSentryCheck()
TableRowBase.EndIgnoreSentryCheck()
TableRowBase.GetRelatedNestedPersist()
TableRowBase.Item[Int32]
TableRowBase.Item[SoField]
TableRowBase.Sentries
TableRowBase.ForeignKeyHelper
TableRowBase.IsDeleted
TableRowBase.IsSaving
TableRowBase.SqlType
TableRowBase.IsSentryIgnored
TableRowBase.IsMarkedForDelete
TableRowBase.OnValueChanged
TableRowBase.OnElementSaved
TableRowBase.OnElementIdUpdate
PrivateSave.GetTableInfos()
PrivateSave.CloneToBasicUpdatingQuery()
PrivateSave.OnUpdateField
SqlCommand.Origin
SqlCommand.AddIgnoreAutoSentryTableInfo(TableInfo)
SqlCommand.AddIgnoreAutoSentryTableInfo(IEnumerable<TableInfo>)
SqlCommand.RemoveIgnoreAutoSentryTableInfo(TableInfo)
SqlCommand.ClearIgnoreAutoSentryTableInfos()
SqlCommand.IsAutoSentryIgnoredOnTableInfo(TableInfo)
SqlCommand.GetPrivateSaves()
SqlCommand.GetInserts()
SqlCommand.GetUpdates()
SqlCommand.GetDeletes()
SqlCommand.GetSelect()
SqlCommand.AutoSentryIgnoredTables
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class UDContactSmallRow : TableRowBase, INestedPersist, ISoDataLookup, ISentryIgnorable, ISoItem
Remarks

Row objects can be created in several ways.

  • Use the static CreateNew() method to create a new, empty object. After populating it with values, you call the method and a corresponding row in the database is created, and the objects' primary key field updated. This is the preferred way to insert new rows into the database.
  • You can create a (nested) UDContactSmallRow UDContactSmallRow.CustomSearch object to obtain a query pre-populated with the correct tableinfo and return fields. This query can be modified with restrictions, etc. Then, use the static GetFromCustomSearch(UDContactSmallRow.CustomSearch) method to apply the query to the database and obtain the result as a Row object. This is how you select existing rows from the database when you have a query that does not correspond to any of the existing database indexes.
  • For each unique index defined for the table, there is a corresponding GetFromIdx method to make retrieving data via the indexes easy. Note that if you try to fetch a row that does not exist (for instance, by using the primary key index and specifying a primary key that does not exist in the database), you will get a Row object with the and properties set to true. Such a Row object is called a 'ghost' and cannot be updated, saved or deleted. You can also get a ghost if the row does exist in the database, but the Sentry system denies Select rights to the row.
  • Finally, if you have an SoDataReader that contains ALL the fields of the table, and you have the UDContactSmallTableInfo instance used in the query behind the reader, you can use the static GetFromReader(SoDataReader, UDContactSmallTableInfo) method to create a new row object from the reader and the table info. This is useful when you have a larger, more complex query, for instance one that joins a number of tables, and you wish to use Row objects to process the result set. If your result set corresponds to an entity, consider using the corresponding Entity layer object instead, since entities automatically handle ID allocation and mapping, rights, and other higher-level aspects.
Non-unique indexes are handled through the UDContactSmallRows collection, which has nested classes and GetFromIdx methods for each non-unique index. Similarly, there is a GetFromReader(SoDataReader, UDContactSmallTableInfo) method to retrieve the results of queries that return more than one row.

Unique indexes on table UDContactSmall are:

Index fieldsNested index class name

Constructors

UDContactSmallRow(UDContactSmallRow.UDContactSmallRowIdxBase)

Constructor for the class taking an index as argument. User-defined fields for contact

Declaration
protected UDContactSmallRow(UDContactSmallRow.UDContactSmallRowIdxBase idx)
Parameters
Type Name Description
UDContactSmallRow.UDContactSmallRowIdxBase idx

The index representing a SELECT command to the database.

Fields

_currentDouble01

Current value, see property Double01.

Declaration
protected double _currentDouble01
Field Value
Type Description
Double

_currentDouble02

Current value, see property Double02.

Declaration
protected double _currentDouble02
Field Value
Type Description
Double

_currentDouble03

Current value, see property Double03.

Declaration
protected double _currentDouble03
Field Value
Type Description
Double

_currentDouble04

Current value, see property Double04.

Declaration
protected double _currentDouble04
Field Value
Type Description
Double

_currentDouble05

Current value, see property Double05.

Declaration
protected double _currentDouble05
Field Value
Type Description
Double

_currentDouble06

Current value, see property Double06.

Declaration
protected double _currentDouble06
Field Value
Type Description
Double

_currentDouble07

Current value, see property Double07.

Declaration
protected double _currentDouble07
Field Value
Type Description
Double

_currentDouble08

Current value, see property Double08.

Declaration
protected double _currentDouble08
Field Value
Type Description
Double

_currentDouble09

Current value, see property Double09.

Declaration
protected double _currentDouble09
Field Value
Type Description
Double

_currentDouble10

Current value, see property Double10.

Declaration
protected double _currentDouble10
Field Value
Type Description
Double

_currentLong01

Current value, see property Long01.

Declaration
protected int _currentLong01
Field Value
Type Description
Int32

_currentLong02

Current value, see property Long02.

Declaration
protected int _currentLong02
Field Value
Type Description
Int32

_currentLong03

Current value, see property Long03.

Declaration
protected int _currentLong03
Field Value
Type Description
Int32

_currentLong04

Current value, see property Long04.

Declaration
protected int _currentLong04
Field Value
Type Description
Int32

_currentLong05

Current value, see property Long05.

Declaration
protected int _currentLong05
Field Value
Type Description
Int32

_currentLong06

Current value, see property Long06.

Declaration
protected int _currentLong06
Field Value
Type Description
Int32

_currentLong07

Current value, see property Long07.

Declaration
protected int _currentLong07
Field Value
Type Description
Int32

_currentLong08

Current value, see property Long08.

Declaration
protected int _currentLong08
Field Value
Type Description
Int32

_currentLong09

Current value, see property Long09.

Declaration
protected int _currentLong09
Field Value
Type Description
Int32

_currentLong10

Current value, see property Long10.

Declaration
protected int _currentLong10
Field Value
Type Description
Int32

_currentLong11

Current value, see property Long11.

Declaration
protected int _currentLong11
Field Value
Type Description
Int32

_currentLong12

Current value, see property Long12.

Declaration
protected int _currentLong12
Field Value
Type Description
Int32

_currentLong13

Current value, see property Long13.

Declaration
protected int _currentLong13
Field Value
Type Description
Int32

_currentLong14

Current value, see property Long14.

Declaration
protected int _currentLong14
Field Value
Type Description
Int32

_currentLong15

Current value, see property Long15.

Declaration
protected int _currentLong15
Field Value
Type Description
Int32

_currentLong16

Current value, see property Long16.

Declaration
protected int _currentLong16
Field Value
Type Description
Int32

_currentLong17

Current value, see property Long17.

Declaration
protected int _currentLong17
Field Value
Type Description
Int32

_currentLong18

Current value, see property Long18.

Declaration
protected int _currentLong18
Field Value
Type Description
Int32

_currentLong19

Current value, see property Long19.

Declaration
protected int _currentLong19
Field Value
Type Description
Int32

_currentLong20

Current value, see property Long20.

Declaration
protected int _currentLong20
Field Value
Type Description
Int32

_currentLong21

Current value, see property Long21.

Declaration
protected int _currentLong21
Field Value
Type Description
Int32

_currentLong22

Current value, see property Long22.

Declaration
protected int _currentLong22
Field Value
Type Description
Int32

_currentLong23

Current value, see property Long23.

Declaration
protected int _currentLong23
Field Value
Type Description
Int32

_currentLong24

Current value, see property Long24.

Declaration
protected int _currentLong24
Field Value
Type Description
Int32

_currentLong25

Current value, see property Long25.

Declaration
protected int _currentLong25
Field Value
Type Description
Int32

_currentLong26

Current value, see property Long26.

Declaration
protected int _currentLong26
Field Value
Type Description
Int32

_currentLong27

Current value, see property Long27.

Declaration
protected int _currentLong27
Field Value
Type Description
Int32

_currentLong28

Current value, see property Long28.

Declaration
protected int _currentLong28
Field Value
Type Description
Int32

_currentLong29

Current value, see property Long29.

Declaration
protected int _currentLong29
Field Value
Type Description
Int32

_currentLong30

Current value, see property Long30.

Declaration
protected int _currentLong30
Field Value
Type Description
Int32

_currentLong31

Current value, see property Long31.

Declaration
protected int _currentLong31
Field Value
Type Description
Int32

_currentLong32

Current value, see property Long32.

Declaration
protected int _currentLong32
Field Value
Type Description
Int32

_currentLong33

Current value, see property Long33.

Declaration
protected int _currentLong33
Field Value
Type Description
Int32

_currentLong34

Current value, see property Long34.

Declaration
protected int _currentLong34
Field Value
Type Description
Int32

_currentLong35

Current value, see property Long35.

Declaration
protected int _currentLong35
Field Value
Type Description
Int32

_currentLong36

Current value, see property Long36.

Declaration
protected int _currentLong36
Field Value
Type Description
Int32

_currentLong37

Current value, see property Long37.

Declaration
protected int _currentLong37
Field Value
Type Description
Int32

_currentLong38

Current value, see property Long38.

Declaration
protected int _currentLong38
Field Value
Type Description
Int32

_currentLong39

Current value, see property Long39.

Declaration
protected int _currentLong39
Field Value
Type Description
Int32

_currentLong40

Current value, see property Long40.

Declaration
protected int _currentLong40
Field Value
Type Description
Int32

_currentLong41

Current value, see property Long41.

Declaration
protected int _currentLong41
Field Value
Type Description
Int32

_currentLong42

Current value, see property Long42.

Declaration
protected int _currentLong42
Field Value
Type Description
Int32

_currentLong43

Current value, see property Long43.

Declaration
protected int _currentLong43
Field Value
Type Description
Int32

_currentLong44

Current value, see property Long44.

Declaration
protected int _currentLong44
Field Value
Type Description
Int32

_currentLong45

Current value, see property Long45.

Declaration
protected int _currentLong45
Field Value
Type Description
Int32

_currentLong46

Current value, see property Long46.

Declaration
protected int _currentLong46
Field Value
Type Description
Int32

_currentLong47

Current value, see property Long47.

Declaration
protected int _currentLong47
Field Value
Type Description
Int32

_currentLong48

Current value, see property Long48.

Declaration
protected int _currentLong48
Field Value
Type Description
Int32

_currentLong49

Current value, see property Long49.

Declaration
protected int _currentLong49
Field Value
Type Description
Int32

_currentLong50

Current value, see property Long50.

Declaration
protected int _currentLong50
Field Value
Type Description
Int32

_currentLong51

Current value, see property Long51.

Declaration
protected int _currentLong51
Field Value
Type Description
Int32

_currentLong52

Current value, see property Long52.

Declaration
protected int _currentLong52
Field Value
Type Description
Int32

_currentLong53

Current value, see property Long53.

Declaration
protected int _currentLong53
Field Value
Type Description
Int32

_currentLong54

Current value, see property Long54.

Declaration
protected int _currentLong54
Field Value
Type Description
Int32

_currentLong55

Current value, see property Long55.

Declaration
protected int _currentLong55
Field Value
Type Description
Int32

_currentLong56

Current value, see property Long56.

Declaration
protected int _currentLong56
Field Value
Type Description
Int32

_currentLong57

Current value, see property Long57.

Declaration
protected int _currentLong57
Field Value
Type Description
Int32

_currentLong58

Current value, see property Long58.

Declaration
protected int _currentLong58
Field Value
Type Description
Int32

_currentLong59

Current value, see property Long59.

Declaration
protected int _currentLong59
Field Value
Type Description
Int32

_currentLong60

Current value, see property Long60.

Declaration
protected int _currentLong60
Field Value
Type Description
Int32

_currentString01

Current value, see property String01.

Declaration
protected string _currentString01
Field Value
Type Description
String

_currentString02

Current value, see property String02.

Declaration
protected string _currentString02
Field Value
Type Description
String

_currentString03

Current value, see property String03.

Declaration
protected string _currentString03
Field Value
Type Description
String

_currentString04

Current value, see property String04.

Declaration
protected string _currentString04
Field Value
Type Description
String

_currentString05

Current value, see property String05.

Declaration
protected string _currentString05
Field Value
Type Description
String

_currentString06

Current value, see property String06.

Declaration
protected string _currentString06
Field Value
Type Description
String

_currentString07

Current value, see property String07.

Declaration
protected string _currentString07
Field Value
Type Description
String

_currentString08

Current value, see property String08.

Declaration
protected string _currentString08
Field Value
Type Description
String

_currentString09

Current value, see property String09.

Declaration
protected string _currentString09
Field Value
Type Description
String

_currentString10

Current value, see property String10.

Declaration
protected string _currentString10
Field Value
Type Description
String

_currentString11

Current value, see property String11.

Declaration
protected string _currentString11
Field Value
Type Description
String

_currentString12

Current value, see property String12.

Declaration
protected string _currentString12
Field Value
Type Description
String

_currentString13

Current value, see property String13.

Declaration
protected string _currentString13
Field Value
Type Description
String

_currentString14

Current value, see property String14.

Declaration
protected string _currentString14
Field Value
Type Description
String

_currentString15

Current value, see property String15.

Declaration
protected string _currentString15
Field Value
Type Description
String

_currentString16

Current value, see property String16.

Declaration
protected string _currentString16
Field Value
Type Description
String

_currentString17

Current value, see property String17.

Declaration
protected string _currentString17
Field Value
Type Description
String

_currentString18

Current value, see property String18.

Declaration
protected string _currentString18
Field Value
Type Description
String

_currentString19

Current value, see property String19.

Declaration
protected string _currentString19
Field Value
Type Description
String

_currentString20

Current value, see property String20.

Declaration
protected string _currentString20
Field Value
Type Description
String

_currentString21

Current value, see property String21.

Declaration
protected string _currentString21
Field Value
Type Description
String

_currentString22

Current value, see property String22.

Declaration
protected string _currentString22
Field Value
Type Description
String

_currentString23

Current value, see property String23.

Declaration
protected string _currentString23
Field Value
Type Description
String

_currentString24

Current value, see property String24.

Declaration
protected string _currentString24
Field Value
Type Description
String

_currentString25

Current value, see property String25.

Declaration
protected string _currentString25
Field Value
Type Description
String

_currentString26

Current value, see property String26.

Declaration
protected string _currentString26
Field Value
Type Description
String

_currentString27

Current value, see property String27.

Declaration
protected string _currentString27
Field Value
Type Description
String

_currentString28

Current value, see property String28.

Declaration
protected string _currentString28
Field Value
Type Description
String

_currentString29

Current value, see property String29.

Declaration
protected string _currentString29
Field Value
Type Description
String

_currentString30

Current value, see property String30.

Declaration
protected string _currentString30
Field Value
Type Description
String

_currentString31

Current value, see property String31.

Declaration
protected string _currentString31
Field Value
Type Description
String

_currentString32

Current value, see property String32.

Declaration
protected string _currentString32
Field Value
Type Description
String

_currentString33

Current value, see property String33.

Declaration
protected string _currentString33
Field Value
Type Description
String

_currentString34

Current value, see property String34.

Declaration
protected string _currentString34
Field Value
Type Description
String

_currentString35

Current value, see property String35.

Declaration
protected string _currentString35
Field Value
Type Description
String

_currentString36

Current value, see property String36.

Declaration
protected string _currentString36
Field Value
Type Description
String

_currentString37

Current value, see property String37.

Declaration
protected string _currentString37
Field Value
Type Description
String

_currentString38

Current value, see property String38.

Declaration
protected string _currentString38
Field Value
Type Description
String

_currentString39

Current value, see property String39.

Declaration
protected string _currentString39
Field Value
Type Description
String

_currentString40

Current value, see property String40.

Declaration
protected string _currentString40
Field Value
Type Description
String

_currentUdcontactSmallId

Current value, see property UdcontactSmallId.

Declaration
protected int _currentUdcontactSmallId
Field Value
Type Description
Int32

_persistedDouble01

Persisted value, see property Double01.

Declaration
protected double _persistedDouble01
Field Value
Type Description
Double

_persistedDouble02

Persisted value, see property Double02.

Declaration
protected double _persistedDouble02
Field Value
Type Description
Double

_persistedDouble03

Persisted value, see property Double03.

Declaration
protected double _persistedDouble03
Field Value
Type Description
Double

_persistedDouble04

Persisted value, see property Double04.

Declaration
protected double _persistedDouble04
Field Value
Type Description
Double

_persistedDouble05

Persisted value, see property Double05.

Declaration
protected double _persistedDouble05
Field Value
Type Description
Double

_persistedDouble06

Persisted value, see property Double06.

Declaration
protected double _persistedDouble06
Field Value
Type Description
Double

_persistedDouble07

Persisted value, see property Double07.

Declaration
protected double _persistedDouble07
Field Value
Type Description
Double

_persistedDouble08

Persisted value, see property Double08.

Declaration
protected double _persistedDouble08
Field Value
Type Description
Double

_persistedDouble09

Persisted value, see property Double09.

Declaration
protected double _persistedDouble09
Field Value
Type Description
Double

_persistedDouble10

Persisted value, see property Double10.

Declaration
protected double _persistedDouble10
Field Value
Type Description
Double

_persistedLong01

Persisted value, see property Long01.

Declaration
protected int _persistedLong01
Field Value
Type Description
Int32

_persistedLong02

Persisted value, see property Long02.

Declaration
protected int _persistedLong02
Field Value
Type Description
Int32

_persistedLong03

Persisted value, see property Long03.

Declaration
protected int _persistedLong03
Field Value
Type Description
Int32

_persistedLong04

Persisted value, see property Long04.

Declaration
protected int _persistedLong04
Field Value
Type Description
Int32

_persistedLong05

Persisted value, see property Long05.

Declaration
protected int _persistedLong05
Field Value
Type Description
Int32

_persistedLong06

Persisted value, see property Long06.

Declaration
protected int _persistedLong06
Field Value
Type Description
Int32

_persistedLong07

Persisted value, see property Long07.

Declaration
protected int _persistedLong07
Field Value
Type Description
Int32

_persistedLong08

Persisted value, see property Long08.

Declaration
protected int _persistedLong08
Field Value
Type Description
Int32

_persistedLong09

Persisted value, see property Long09.

Declaration
protected int _persistedLong09
Field Value
Type Description
Int32

_persistedLong10

Persisted value, see property Long10.

Declaration
protected int _persistedLong10
Field Value
Type Description
Int32

_persistedLong11

Persisted value, see property Long11.

Declaration
protected int _persistedLong11
Field Value
Type Description
Int32

_persistedLong12

Persisted value, see property Long12.

Declaration
protected int _persistedLong12
Field Value
Type Description
Int32

_persistedLong13

Persisted value, see property Long13.

Declaration
protected int _persistedLong13
Field Value
Type Description
Int32

_persistedLong14

Persisted value, see property Long14.

Declaration
protected int _persistedLong14
Field Value
Type Description
Int32

_persistedLong15

Persisted value, see property Long15.

Declaration
protected int _persistedLong15
Field Value
Type Description
Int32

_persistedLong16

Persisted value, see property Long16.

Declaration
protected int _persistedLong16
Field Value
Type Description
Int32

_persistedLong17

Persisted value, see property Long17.

Declaration
protected int _persistedLong17
Field Value
Type Description
Int32

_persistedLong18

Persisted value, see property Long18.

Declaration
protected int _persistedLong18
Field Value
Type Description
Int32

_persistedLong19

Persisted value, see property Long19.

Declaration
protected int _persistedLong19
Field Value
Type Description
Int32

_persistedLong20

Persisted value, see property Long20.

Declaration
protected int _persistedLong20
Field Value
Type Description
Int32

_persistedLong21

Persisted value, see property Long21.

Declaration
protected int _persistedLong21
Field Value
Type Description
Int32

_persistedLong22

Persisted value, see property Long22.

Declaration
protected int _persistedLong22
Field Value
Type Description
Int32

_persistedLong23

Persisted value, see property Long23.

Declaration
protected int _persistedLong23
Field Value
Type Description
Int32

_persistedLong24

Persisted value, see property Long24.

Declaration
protected int _persistedLong24
Field Value
Type Description
Int32

_persistedLong25

Persisted value, see property Long25.

Declaration
protected int _persistedLong25
Field Value
Type Description
Int32

_persistedLong26

Persisted value, see property Long26.

Declaration
protected int _persistedLong26
Field Value
Type Description
Int32

_persistedLong27

Persisted value, see property Long27.

Declaration
protected int _persistedLong27
Field Value
Type Description
Int32

_persistedLong28

Persisted value, see property Long28.

Declaration
protected int _persistedLong28
Field Value
Type Description
Int32

_persistedLong29

Persisted value, see property Long29.

Declaration
protected int _persistedLong29
Field Value
Type Description
Int32

_persistedLong30

Persisted value, see property Long30.

Declaration
protected int _persistedLong30
Field Value
Type Description
Int32

_persistedLong31

Persisted value, see property Long31.

Declaration
protected int _persistedLong31
Field Value
Type Description
Int32

_persistedLong32

Persisted value, see property Long32.

Declaration
protected int _persistedLong32
Field Value
Type Description
Int32

_persistedLong33

Persisted value, see property Long33.

Declaration
protected int _persistedLong33
Field Value
Type Description
Int32

_persistedLong34

Persisted value, see property Long34.

Declaration
protected int _persistedLong34
Field Value
Type Description
Int32

_persistedLong35

Persisted value, see property Long35.

Declaration
protected int _persistedLong35
Field Value
Type Description
Int32

_persistedLong36

Persisted value, see property Long36.

Declaration
protected int _persistedLong36
Field Value
Type Description
Int32

_persistedLong37

Persisted value, see property Long37.

Declaration
protected int _persistedLong37
Field Value
Type Description
Int32

_persistedLong38

Persisted value, see property Long38.

Declaration
protected int _persistedLong38
Field Value
Type Description
Int32

_persistedLong39

Persisted value, see property Long39.

Declaration
protected int _persistedLong39
Field Value
Type Description
Int32

_persistedLong40

Persisted value, see property Long40.

Declaration
protected int _persistedLong40
Field Value
Type Description
Int32

_persistedLong41

Persisted value, see property Long41.

Declaration
protected int _persistedLong41
Field Value
Type Description
Int32

_persistedLong42

Persisted value, see property Long42.

Declaration
protected int _persistedLong42
Field Value
Type Description
Int32

_persistedLong43

Persisted value, see property Long43.

Declaration
protected int _persistedLong43
Field Value
Type Description
Int32

_persistedLong44

Persisted value, see property Long44.

Declaration
protected int _persistedLong44
Field Value
Type Description
Int32

_persistedLong45

Persisted value, see property Long45.

Declaration
protected int _persistedLong45
Field Value
Type Description
Int32

_persistedLong46

Persisted value, see property Long46.

Declaration
protected int _persistedLong46
Field Value
Type Description
Int32

_persistedLong47

Persisted value, see property Long47.

Declaration
protected int _persistedLong47
Field Value
Type Description
Int32

_persistedLong48

Persisted value, see property Long48.

Declaration
protected int _persistedLong48
Field Value
Type Description
Int32

_persistedLong49

Persisted value, see property Long49.

Declaration
protected int _persistedLong49
Field Value
Type Description
Int32

_persistedLong50

Persisted value, see property Long50.

Declaration
protected int _persistedLong50
Field Value
Type Description
Int32

_persistedLong51

Persisted value, see property Long51.

Declaration
protected int _persistedLong51
Field Value
Type Description
Int32

_persistedLong52

Persisted value, see property Long52.

Declaration
protected int _persistedLong52
Field Value
Type Description
Int32

_persistedLong53

Persisted value, see property Long53.

Declaration
protected int _persistedLong53
Field Value
Type Description
Int32

_persistedLong54

Persisted value, see property Long54.

Declaration
protected int _persistedLong54
Field Value
Type Description
Int32

_persistedLong55

Persisted value, see property Long55.

Declaration
protected int _persistedLong55
Field Value
Type Description
Int32

_persistedLong56

Persisted value, see property Long56.

Declaration
protected int _persistedLong56
Field Value
Type Description
Int32

_persistedLong57

Persisted value, see property Long57.

Declaration
protected int _persistedLong57
Field Value
Type Description
Int32

_persistedLong58

Persisted value, see property Long58.

Declaration
protected int _persistedLong58
Field Value
Type Description
Int32

_persistedLong59

Persisted value, see property Long59.

Declaration
protected int _persistedLong59
Field Value
Type Description
Int32

_persistedLong60

Persisted value, see property Long60.

Declaration
protected int _persistedLong60
Field Value
Type Description
Int32

_persistedString01

Persisted value, see property String01.

Declaration
protected string _persistedString01
Field Value
Type Description
String

_persistedString02

Persisted value, see property String02.

Declaration
protected string _persistedString02
Field Value
Type Description
String

_persistedString03

Persisted value, see property String03.

Declaration
protected string _persistedString03
Field Value
Type Description
String

_persistedString04

Persisted value, see property String04.

Declaration
protected string _persistedString04
Field Value
Type Description
String

_persistedString05

Persisted value, see property String05.

Declaration
protected string _persistedString05
Field Value
Type Description
String

_persistedString06

Persisted value, see property String06.

Declaration
protected string _persistedString06
Field Value
Type Description
String

_persistedString07

Persisted value, see property String07.

Declaration
protected string _persistedString07
Field Value
Type Description
String

_persistedString08

Persisted value, see property String08.

Declaration
protected string _persistedString08
Field Value
Type Description
String

_persistedString09

Persisted value, see property String09.

Declaration
protected string _persistedString09
Field Value
Type Description
String

_persistedString10

Persisted value, see property String10.

Declaration
protected string _persistedString10
Field Value
Type Description
String

_persistedString11

Persisted value, see property String11.

Declaration
protected string _persistedString11
Field Value
Type Description
String

_persistedString12

Persisted value, see property String12.

Declaration
protected string _persistedString12
Field Value
Type Description
String

_persistedString13

Persisted value, see property String13.

Declaration
protected string _persistedString13
Field Value
Type Description
String

_persistedString14

Persisted value, see property String14.

Declaration
protected string _persistedString14
Field Value
Type Description
String

_persistedString15

Persisted value, see property String15.

Declaration
protected string _persistedString15
Field Value
Type Description
String

_persistedString16

Persisted value, see property String16.

Declaration
protected string _persistedString16
Field Value
Type Description
String

_persistedString17

Persisted value, see property String17.

Declaration
protected string _persistedString17
Field Value
Type Description
String

_persistedString18

Persisted value, see property String18.

Declaration
protected string _persistedString18
Field Value
Type Description
String

_persistedString19

Persisted value, see property String19.

Declaration
protected string _persistedString19
Field Value
Type Description
String

_persistedString20

Persisted value, see property String20.

Declaration
protected string _persistedString20
Field Value
Type Description
String

_persistedString21

Persisted value, see property String21.

Declaration
protected string _persistedString21
Field Value
Type Description
String

_persistedString22

Persisted value, see property String22.

Declaration
protected string _persistedString22
Field Value
Type Description
String

_persistedString23

Persisted value, see property String23.

Declaration
protected string _persistedString23
Field Value
Type Description
String

_persistedString24

Persisted value, see property String24.

Declaration
protected string _persistedString24
Field Value
Type Description
String

_persistedString25

Persisted value, see property String25.

Declaration
protected string _persistedString25
Field Value
Type Description
String

_persistedString26

Persisted value, see property String26.

Declaration
protected string _persistedString26
Field Value
Type Description
String

_persistedString27

Persisted value, see property String27.

Declaration
protected string _persistedString27
Field Value
Type Description
String

_persistedString28

Persisted value, see property String28.

Declaration
protected string _persistedString28
Field Value
Type Description
String

_persistedString29

Persisted value, see property String29.

Declaration
protected string _persistedString29
Field Value
Type Description
String

_persistedString30

Persisted value, see property String30.

Declaration
protected string _persistedString30
Field Value
Type Description
String

_persistedString31

Persisted value, see property String31.

Declaration
protected string _persistedString31
Field Value
Type Description
String

_persistedString32

Persisted value, see property String32.

Declaration
protected string _persistedString32
Field Value
Type Description
String

_persistedString33

Persisted value, see property String33.

Declaration
protected string _persistedString33
Field Value
Type Description
String

_persistedString34

Persisted value, see property String34.

Declaration
protected string _persistedString34
Field Value
Type Description
String

_persistedString35

Persisted value, see property String35.

Declaration
protected string _persistedString35
Field Value
Type Description
String

_persistedString36

Persisted value, see property String36.

Declaration
protected string _persistedString36
Field Value
Type Description
String

_persistedString37

Persisted value, see property String37.

Declaration
protected string _persistedString37
Field Value
Type Description
String

_persistedString38

Persisted value, see property String38.

Declaration
protected string _persistedString38
Field Value
Type Description
String

_persistedString39

Persisted value, see property String39.

Declaration
protected string _persistedString39
Field Value
Type Description
String

_persistedString40

Persisted value, see property String40.

Declaration
protected string _persistedString40
Field Value
Type Description
String

_persistedUdcontactSmallId

Persisted value, see property UdcontactSmallId.

Declaration
protected int _persistedUdcontactSmallId
Field Value
Type Description
Int32

Properties

Double01

.NET type: double. double value 1, indexed

Declaration
public virtual double Double01 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double02

.NET type: double. double value 2, indexed

Declaration
public virtual double Double02 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double03

.NET type: double. double value 3, indexed

Declaration
public virtual double Double03 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double04

.NET type: double. double value 4, indexed

Declaration
public virtual double Double04 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double05

.NET type: double. double value 5, not indexed

Declaration
public virtual double Double05 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double06

.NET type: double. double value 6, not indexed

Declaration
public virtual double Double06 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double07

.NET type: double. double value 7, not indexed

Declaration
public virtual double Double07 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double08

.NET type: double. double value 8, not indexed

Declaration
public virtual double Double08 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double09

.NET type: double. double value 9, not indexed

Declaration
public virtual double Double09 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Double10

.NET type: double. double value 10, not indexed

Declaration
public virtual double Double10 { get; set; }
Property Value
Type Description
Double
Remarks

Original type in dictionary: Double.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0.0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

InnerFieldValuePairs

The values of all the fields in the row.
The first field is the primary key.
The index of the value corresponds to the name of the field returned from the Fields property.

Declaration
protected override ArgumentParameterCollection InnerFieldValuePairs { get; }
Property Value
Type Description
ArgumentParameterCollection
Overrides
PrivateSave.InnerFieldValuePairs

InnerPrimaryKey

The primary key needed to decide which specific row to alter with the current sql-command.

Declaration
protected override FieldInfo InnerPrimaryKey { get; }
Property Value
Type Description
FieldInfo
Overrides
PrivateSave.InnerPrimaryKey

InnerPrimaryKeyValue

The actual value the primary key must have.

Declaration
protected override Parameter InnerPrimaryKeyValue { get; }
Property Value
Type Description
Parameter
Overrides
PrivateSave.InnerPrimaryKeyValue

IsDirty

Is the row dirty, e.g. been modified since the last time it was saved to the database.

Declaration
public override bool IsDirty { get; }
Property Value
Type Description
Boolean
Overrides
TableRowBase.IsDirty

IsNew

Is this object new, meaning that it does not exist in the database.

Declaration
public override bool IsNew { get; }
Property Value
Type Description
Boolean
Overrides
TableRowBase.IsNew

Item[String]

Get or set a value based on the name of the field.

Declaration
public override object this[string fieldName] { get; set; }
Parameters
Type Name Description
String fieldName

Name of the field in the database

Property Value
Type Description
Object

Value of the field.

Overrides
TableRowBase.Item[String]
Exceptions
Type Condition
ArgumentException

Thrown if the field is not known.

Long01

.NET type: int. long value 1, indexed

Declaration
public virtual int Long01 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long02

.NET type: int. long value 2, indexed

Declaration
public virtual int Long02 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long03

.NET type: int. long value 3, indexed

Declaration
public virtual int Long03 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long04

.NET type: int. long value 4, indexed

Declaration
public virtual int Long04 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long05

.NET type: int. long value 5, not indexed

Declaration
public virtual int Long05 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long06

.NET type: int. long value 6, not indexed

Declaration
public virtual int Long06 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long07

.NET type: int. long value 7, not indexed

Declaration
public virtual int Long07 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long08

.NET type: int. long value 8, not indexed

Declaration
public virtual int Long08 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long09

.NET type: int. long value 9, not indexed

Declaration
public virtual int Long09 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long10

.NET type: int. long value 10, not indexed

Declaration
public virtual int Long10 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long11

.NET type: int. long value 11, not indexed

Declaration
public virtual int Long11 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long12

.NET type: int. long value 12, not indexed

Declaration
public virtual int Long12 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long13

.NET type: int. long value 13, not indexed

Declaration
public virtual int Long13 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long14

.NET type: int. long value 14, not indexed

Declaration
public virtual int Long14 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long15

.NET type: int. long value 15, not indexed

Declaration
public virtual int Long15 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long16

.NET type: int. long value 16, not indexed

Declaration
public virtual int Long16 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long17

.NET type: int. long value 17, not indexed

Declaration
public virtual int Long17 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long18

.NET type: int. long value 18, not indexed

Declaration
public virtual int Long18 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long19

.NET type: int. long value 19, not indexed

Declaration
public virtual int Long19 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long20

.NET type: int. long value 20, not indexed

Declaration
public virtual int Long20 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long21

.NET type: int. long value 21, not indexed

Declaration
public virtual int Long21 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long22

.NET type: int. long value 22, not indexed

Declaration
public virtual int Long22 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long23

.NET type: int. long value 23, not indexed

Declaration
public virtual int Long23 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long24

.NET type: int. long value 24, not indexed

Declaration
public virtual int Long24 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long25

.NET type: int. long value 25, not indexed

Declaration
public virtual int Long25 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long26

.NET type: int. long value 26, not indexed

Declaration
public virtual int Long26 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long27

.NET type: int. long value 27, not indexed

Declaration
public virtual int Long27 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long28

.NET type: int. long value 28, not indexed

Declaration
public virtual int Long28 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long29

.NET type: int. long value 29, not indexed

Declaration
public virtual int Long29 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long30

.NET type: int. long value 30, not indexed

Declaration
public virtual int Long30 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long31

.NET type: int. long value 31, not indexed

Declaration
public virtual int Long31 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long32

.NET type: int. long value 32, not indexed

Declaration
public virtual int Long32 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long33

.NET type: int. long value 33, not indexed

Declaration
public virtual int Long33 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long34

.NET type: int. long value 34, not indexed

Declaration
public virtual int Long34 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long35

.NET type: int. long value 35, not indexed

Declaration
public virtual int Long35 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long36

.NET type: int. long value 36, not indexed

Declaration
public virtual int Long36 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long37

.NET type: int. long value 37, not indexed

Declaration
public virtual int Long37 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long38

.NET type: int. long value 38, not indexed

Declaration
public virtual int Long38 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long39

.NET type: int. long value 39, not indexed

Declaration
public virtual int Long39 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long40

.NET type: int. long value 40, not indexed

Declaration
public virtual int Long40 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long41

.NET type: int. long value 41, not indexed

Declaration
public virtual int Long41 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long42

.NET type: int. long value 42, not indexed

Declaration
public virtual int Long42 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long43

.NET type: int. long value 43, not indexed

Declaration
public virtual int Long43 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long44

.NET type: int. long value 44, not indexed

Declaration
public virtual int Long44 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long45

.NET type: int. long value 45, not indexed

Declaration
public virtual int Long45 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long46

.NET type: int. long value 46, not indexed

Declaration
public virtual int Long46 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long47

.NET type: int. long value 47, not indexed

Declaration
public virtual int Long47 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long48

.NET type: int. long value 48, not indexed

Declaration
public virtual int Long48 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long49

.NET type: int. long value 49, not indexed

Declaration
public virtual int Long49 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long50

.NET type: int. long value 50, not indexed

Declaration
public virtual int Long50 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long51

.NET type: int. long value 51, not indexed

Declaration
public virtual int Long51 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long52

.NET type: int. long value 52, not indexed

Declaration
public virtual int Long52 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long53

.NET type: int. long value 53, not indexed

Declaration
public virtual int Long53 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long54

.NET type: int. long value 54, not indexed

Declaration
public virtual int Long54 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long55

.NET type: int. long value 55, not indexed

Declaration
public virtual int Long55 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long56

.NET type: int. long value 56, not indexed

Declaration
public virtual int Long56 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long57

.NET type: int. long value 57, not indexed

Declaration
public virtual int Long57 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long58

.NET type: int. long value 58, not indexed

Declaration
public virtual int Long58 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long59

.NET type: int. long value 59, not indexed

Declaration
public virtual int Long59 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

Long60

.NET type: int. long value 60, not indexed

Declaration
public virtual int Long60 { get; set; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: Id.

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (0)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String01

.NET type: string. string value 1, indexed

Declaration
public virtual string String01 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String02

.NET type: string. string value 2, indexed

Declaration
public virtual string String02 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String03

.NET type: string. string value 3, indexed

Declaration
public virtual string String03 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String04

.NET type: string. string value 4, indexed

Declaration
public virtual string String04 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String05

.NET type: string. string value 5, not indexed

Declaration
public virtual string String05 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String06

.NET type: string. string value 6, not indexed

Declaration
public virtual string String06 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String07

.NET type: string. string value 7, not indexed

Declaration
public virtual string String07 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String08

.NET type: string. string value 8, not indexed

Declaration
public virtual string String08 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String09

.NET type: string. string value 9, not indexed

Declaration
public virtual string String09 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String10

.NET type: string. string value 10, not indexed

Declaration
public virtual string String10 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String11

.NET type: string. string value 11, not indexed

Declaration
public virtual string String11 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String12

.NET type: string. string value 12, not indexed

Declaration
public virtual string String12 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String13

.NET type: string. string value 13, not indexed

Declaration
public virtual string String13 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String14

.NET type: string. string value 14, not indexed

Declaration
public virtual string String14 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String15

.NET type: string. string value 15, not indexed

Declaration
public virtual string String15 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String16

.NET type: string. string value 16, not indexed

Declaration
public virtual string String16 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String17

.NET type: string. string value 17, not indexed

Declaration
public virtual string String17 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String18

.NET type: string. string value 18, not indexed

Declaration
public virtual string String18 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String19

.NET type: string. string value 19, not indexed

Declaration
public virtual string String19 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String20

.NET type: string. string value 20, not indexed

Declaration
public virtual string String20 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String21

.NET type: string. string value 21, not indexed

Declaration
public virtual string String21 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String22

.NET type: string. string value 22, not indexed

Declaration
public virtual string String22 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String23

.NET type: string. string value 23, not indexed

Declaration
public virtual string String23 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String24

.NET type: string. string value 24, not indexed

Declaration
public virtual string String24 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String25

.NET type: string. string value 25, not indexed

Declaration
public virtual string String25 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String26

.NET type: string. string value 26, not indexed

Declaration
public virtual string String26 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String27

.NET type: string. string value 27, not indexed

Declaration
public virtual string String27 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String28

.NET type: string. string value 28, not indexed

Declaration
public virtual string String28 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String29

.NET type: string. string value 29, not indexed

Declaration
public virtual string String29 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String30

.NET type: string. string value 30, not indexed

Declaration
public virtual string String30 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String31

.NET type: string. string value 31, not indexed

Declaration
public virtual string String31 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String32

.NET type: string. string value 32, not indexed

Declaration
public virtual string String32 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String33

.NET type: string. string value 33, not indexed

Declaration
public virtual string String33 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String34

.NET type: string. string value 34, not indexed

Declaration
public virtual string String34 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String35

.NET type: string. string value 35, not indexed

Declaration
public virtual string String35 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String36

.NET type: string. string value 36, not indexed

Declaration
public virtual string String36 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String37

.NET type: string. string value 37, not indexed

Declaration
public virtual string String37 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String38

.NET type: string. string value 38, not indexed

Declaration
public virtual string String38 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String39

.NET type: string. string value 39, not indexed

Declaration
public virtual string String39 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

String40

.NET type: string. string value 40, not indexed

Declaration
public virtual string String40 { get; set; }
Property Value
Type Description
String
Remarks

Original type in dictionary: String[40].

You need to have Read access to get the value of this field. If you do not have access, you will get a blank value (string.Empty)

You need to have Write access to set this field to a new value (Sentry will throw exception otherwise)

Setting this field to a new value will not affect the Sentry calculations and your rights

Exceptions
Type Condition
SoSentryException

Thrown if the set method is accessed without having the Write access right to the field

TableInfo

Get the TableInfo for the table.

Declaration
public override TableInfo TableInfo { get; }
Property Value
Type Description
TableInfo

The TableInfo for the table.

Overrides
TableRowBase.TableInfo

UdcontactSmallId

.NET type: int. Primary key

Declaration
public virtual int UdcontactSmallId { get; }
Property Value
Type Description
Int32
Remarks

Original type in dictionary: PK.

This field is the primary key and can only be read, never written.

This field is not protected by the Sentry system, and can always be read

UDContactSmallTableInfo

Get the UDContactSmallTableInfo object associated with the row.

Declaration
public UDContactSmallTableInfo UDContactSmallTableInfo { get; }
Property Value
Type Description
UDContactSmallTableInfo

Methods

CreateNew()

Create a new instance of the UDContactSmallRow object. User-defined fields for contact

Declaration
public static UDContactSmallRow CreateNew()
Returns
Type Description
UDContactSmallRow

A new instance of the UDContactSmallRow object.

GetFromCustomSearch(UDContactSmallRow.CustomSearch)

Create a new instance of the UDContactSmallRow object, and populate it with data from a custom search. If the search returns no results, an object with IsNew will be returned; if the result contains one row, an object representing that row will be returned. If the result contains more than one row, the first row will be used and the rest discarded (there is no way of detecting this situation).

Declaration
public static UDContactSmallRow GetFromCustomSearch(UDContactSmallRow.CustomSearch query)
Parameters
Type Name Description
UDContactSmallRow.CustomSearch query

The custom search to execute against the database

Returns
Type Description
UDContactSmallRow

A new instance of the UDContactSmallRow object, reflecting the result of the query.

GetFromIdxUdcontactSmallId(Int32)

Create a new instance of the UDContactSmallRow object, by querying the database table via the index 'IDXUdcontSmallId'. This method is intended to make it easy to use efficient queries that match a database index.

Declaration
public static UDContactSmallRow GetFromIdxUdcontactSmallId(int udcontactSmallId)
Parameters
Type Name Description
Int32 udcontactSmallId
Returns
Type Description
UDContactSmallRow

Row object that represents the result of the search. IsNew will be true if the query did not match any row in the table

Remarks

This method represents one of the unique indexes on the UDContactSmall table. Non-unique indexes have corresponding inner classes and methods in the UDContactSmallRows collection, since they may return more than one row.

GetFromReader(SoDataReader, UDContactSmallTableInfo)

Create a new instance of the UDContactSmallRow object, and populate it with data from a reader/tableinfo. If the reader has DBNull as the current value of the primary key field, an unpopulated object with IsNew == true will be returned. If any fields are missing or one of the non-primary key fields is DBNull, an exception will be thrown. User-defined fields for contact

Declaration
public static UDContactSmallRow GetFromReader(SoDataReader reader, UDContactSmallTableInfo tableInfo)
Parameters
Type Name Description
SoDataReader reader

SoDataReader positioned to a valid database row.

UDContactSmallTableInfo tableInfo

UDContactSmallTableInfo instance used in the query that is the source of the reader. The fields used from the reader will be those owned by this tableinfo object.

Returns
Type Description
UDContactSmallRow

A new instance of the UDContactSmallRow object.

GetPersistedFieldValue(FieldInfo)

Get the persisted value of a field.

Declaration
public override object GetPersistedFieldValue(FieldInfo field)
Parameters
Type Name Description
FieldInfo field

Specification of a field

Returns
Type Description
Object

Field value, such as an int, DateTime, string ... Null can be returned if the value is not known.

Overrides
PrivateSave.GetPersistedFieldValue(FieldInfo)
Exceptions
Type Condition
ArgumentException

Thrown if the field is not known.

InternalSetValue(String, Object)

Declaration
protected override void InternalSetValue(string fieldName, object value)
Parameters
Type Name Description
String fieldName
Object value
Overrides
TableRowBase.InternalSetValue(String, Object)

IsPersistedFieldValueKnown(FieldInfo)

Check if the persisted value for a field is known.

Declaration
public override bool IsPersistedFieldValueKnown(FieldInfo field)
Parameters
Type Name Description
FieldInfo field

Specification of a field

Returns
Type Description
Boolean

True if the value is known and sentry permits read.

Overrides
PrivateSave.IsPersistedFieldValueKnown(FieldInfo)

OnLoad(SoDataReader, TableInfo)

Fill the object with data returned from the database.

Declaration
protected override void OnLoad(SoDataReader reader, TableInfo tableInfo)
Parameters
Type Name Description
SoDataReader reader

Object holding the data returned from the database.

TableInfo tableInfo

The TableInfo used for the SELECT statement.

Overrides
TableRowBase.OnLoad(SoDataReader, TableInfo)

OnSave(BatchSave)

Add the object to the BatchSave list if it needs saving.

Declaration
protected override void OnSave(BatchSave batchSave)
Parameters
Type Name Description
BatchSave batchSave

Collection of objects to be saved within the transaction.

Overrides
TableRowBase.OnSave(BatchSave)
Remarks

Classes overriding this method should call it.

OnSaved(Boolean)

Method called after the save operation has been performed.

Declaration
protected override void OnSaved(bool bSucceeded)
Parameters
Type Name Description
Boolean bSucceeded

True if the save operation succeeded (e.g. transaction committed), or false if the save operation failed (e.g. transaction rolled back)

Overrides
TableRowBase.OnSaved(Boolean)

Reset()

Reset the changes made on the object.

Declaration
protected override void Reset()
Overrides
TableRowBase.Reset()
Remarks

If the row is not persisted to the database (e.g. IsNew is true), all the values will be reset. If the row has been persisted to or loaded from the database, the properties will be set to those of the last persisted or loaded values.

SetDefaults(DefaulterStrategy)

Set default values for the row.

Declaration
public override void SetDefaults(DefaulterStrategy strategy)
Parameters
Type Name Description
DefaulterStrategy strategy

Strategy used when applying default values; values depend on where we are in the Create/Fetch/Populate/Save cycle

Overrides
TableRowBase.SetDefaults(DefaulterStrategy)

SetPrimaryKey(Int32)

Set the primary key for the row.

Declaration
protected override void SetPrimaryKey(int primaryKey)
Parameters
Type Name Description
Int32 primaryKey

The new primary key for the row.

Overrides
TableRowBase.SetPrimaryKey(Int32)

SetRowAsNew()

Declaration
public override void SetRowAsNew()
Overrides
TableRowBase.SetRowAsNew()

ToString()

ToString method intended for debugging, returns a string that displays the object type, new/dirty status, primary key and the string fields

Declaration
public override string ToString()
Returns
Type Description
String
Overrides
Object.ToString()

Validate(RowValidator)

Validate this row.

Declaration
public override void Validate(RowValidator rowValidator)
Parameters
Type Name Description
RowValidator rowValidator

RowValidator for inserting the result of the validation

Overrides
TableRowBase.Validate(RowValidator)

Events

_onDouble01Change

Change envent for property Double01; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble01Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble02Change

Change envent for property Double02; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble02Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble03Change

Change envent for property Double03; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble03Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble04Change

Change envent for property Double04; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble04Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble05Change

Change envent for property Double05; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble05Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble06Change

Change envent for property Double06; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble06Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble07Change

Change envent for property Double07; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble07Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble08Change

Change envent for property Double08; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble08Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble09Change

Change envent for property Double09; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble09Change
Event Type
Type Description
OnFieldChange<Double>

_onDouble10Change

Change envent for property Double10; field is of .NET type double.

Declaration
protected event OnFieldChange<double> _onDouble10Change
Event Type
Type Description
OnFieldChange<Double>

_onLong01Change

Change envent for property Long01; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong01Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong02Change

Change envent for property Long02; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong02Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong03Change

Change envent for property Long03; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong03Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong04Change

Change envent for property Long04; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong04Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong05Change

Change envent for property Long05; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong05Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong06Change

Change envent for property Long06; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong06Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong07Change

Change envent for property Long07; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong07Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong08Change

Change envent for property Long08; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong08Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong09Change

Change envent for property Long09; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong09Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong10Change

Change envent for property Long10; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong10Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong11Change

Change envent for property Long11; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong11Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong12Change

Change envent for property Long12; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong12Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong13Change

Change envent for property Long13; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong13Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong14Change

Change envent for property Long14; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong14Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong15Change

Change envent for property Long15; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong15Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong16Change

Change envent for property Long16; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong16Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong17Change

Change envent for property Long17; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong17Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong18Change

Change envent for property Long18; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong18Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong19Change

Change envent for property Long19; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong19Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong20Change

Change envent for property Long20; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong20Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong21Change

Change envent for property Long21; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong21Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong22Change

Change envent for property Long22; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong22Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong23Change

Change envent for property Long23; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong23Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong24Change

Change envent for property Long24; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong24Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong25Change

Change envent for property Long25; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong25Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong26Change

Change envent for property Long26; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong26Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong27Change

Change envent for property Long27; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong27Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong28Change

Change envent for property Long28; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong28Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong29Change

Change envent for property Long29; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong29Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong30Change

Change envent for property Long30; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong30Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong31Change

Change envent for property Long31; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong31Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong32Change

Change envent for property Long32; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong32Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong33Change

Change envent for property Long33; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong33Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong34Change

Change envent for property Long34; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong34Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong35Change

Change envent for property Long35; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong35Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong36Change

Change envent for property Long36; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong36Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong37Change

Change envent for property Long37; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong37Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong38Change

Change envent for property Long38; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong38Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong39Change

Change envent for property Long39; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong39Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong40Change

Change envent for property Long40; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong40Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong41Change

Change envent for property Long41; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong41Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong42Change

Change envent for property Long42; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong42Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong43Change

Change envent for property Long43; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong43Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong44Change

Change envent for property Long44; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong44Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong45Change

Change envent for property Long45; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong45Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong46Change

Change envent for property Long46; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong46Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong47Change

Change envent for property Long47; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong47Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong48Change

Change envent for property Long48; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong48Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong49Change

Change envent for property Long49; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong49Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong50Change

Change envent for property Long50; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong50Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong51Change

Change envent for property Long51; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong51Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong52Change

Change envent for property Long52; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong52Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong53Change

Change envent for property Long53; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong53Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong54Change

Change envent for property Long54; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong54Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong55Change

Change envent for property Long55; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong55Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong56Change

Change envent for property Long56; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong56Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong57Change

Change envent for property Long57; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong57Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong58Change

Change envent for property Long58; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong58Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong59Change

Change envent for property Long59; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong59Change
Event Type
Type Description
OnFieldChange<Int32>

_onLong60Change

Change envent for property Long60; field is of .NET type int.

Declaration
protected event OnFieldChange<int> _onLong60Change
Event Type
Type Description
OnFieldChange<Int32>

_onString01Change

Change envent for property String01; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString01Change
Event Type
Type Description
OnFieldChange<String>

_onString02Change

Change envent for property String02; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString02Change
Event Type
Type Description
OnFieldChange<String>

_onString03Change

Change envent for property String03; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString03Change
Event Type
Type Description
OnFieldChange<String>

_onString04Change

Change envent for property String04; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString04Change
Event Type
Type Description
OnFieldChange<String>

_onString05Change

Change envent for property String05; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString05Change
Event Type
Type Description
OnFieldChange<String>

_onString06Change

Change envent for property String06; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString06Change
Event Type
Type Description
OnFieldChange<String>

_onString07Change

Change envent for property String07; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString07Change
Event Type
Type Description
OnFieldChange<String>

_onString08Change

Change envent for property String08; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString08Change
Event Type
Type Description
OnFieldChange<String>

_onString09Change

Change envent for property String09; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString09Change
Event Type
Type Description
OnFieldChange<String>

_onString10Change

Change envent for property String10; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString10Change
Event Type
Type Description
OnFieldChange<String>

_onString11Change

Change envent for property String11; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString11Change
Event Type
Type Description
OnFieldChange<String>

_onString12Change

Change envent for property String12; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString12Change
Event Type
Type Description
OnFieldChange<String>

_onString13Change

Change envent for property String13; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString13Change
Event Type
Type Description
OnFieldChange<String>

_onString14Change

Change envent for property String14; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString14Change
Event Type
Type Description
OnFieldChange<String>

_onString15Change

Change envent for property String15; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString15Change
Event Type
Type Description
OnFieldChange<String>

_onString16Change

Change envent for property String16; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString16Change
Event Type
Type Description
OnFieldChange<String>

_onString17Change

Change envent for property String17; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString17Change
Event Type
Type Description
OnFieldChange<String>

_onString18Change

Change envent for property String18; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString18Change
Event Type
Type Description
OnFieldChange<String>

_onString19Change

Change envent for property String19; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString19Change
Event Type
Type Description
OnFieldChange<String>

_onString20Change

Change envent for property String20; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString20Change
Event Type
Type Description
OnFieldChange<String>

_onString21Change

Change envent for property String21; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString21Change
Event Type
Type Description
OnFieldChange<String>

_onString22Change

Change envent for property String22; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString22Change
Event Type
Type Description
OnFieldChange<String>

_onString23Change

Change envent for property String23; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString23Change
Event Type
Type Description
OnFieldChange<String>

_onString24Change

Change envent for property String24; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString24Change
Event Type
Type Description
OnFieldChange<String>

_onString25Change

Change envent for property String25; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString25Change
Event Type
Type Description
OnFieldChange<String>

_onString26Change

Change envent for property String26; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString26Change
Event Type
Type Description
OnFieldChange<String>

_onString27Change

Change envent for property String27; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString27Change
Event Type
Type Description
OnFieldChange<String>

_onString28Change

Change envent for property String28; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString28Change
Event Type
Type Description
OnFieldChange<String>

_onString29Change

Change envent for property String29; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString29Change
Event Type
Type Description
OnFieldChange<String>

_onString30Change

Change envent for property String30; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString30Change
Event Type
Type Description
OnFieldChange<String>

_onString31Change

Change envent for property String31; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString31Change
Event Type
Type Description
OnFieldChange<String>

_onString32Change

Change envent for property String32; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString32Change
Event Type
Type Description
OnFieldChange<String>

_onString33Change

Change envent for property String33; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString33Change
Event Type
Type Description
OnFieldChange<String>

_onString34Change

Change envent for property String34; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString34Change
Event Type
Type Description
OnFieldChange<String>

_onString35Change

Change envent for property String35; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString35Change
Event Type
Type Description
OnFieldChange<String>

_onString36Change

Change envent for property String36; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString36Change
Event Type
Type Description
OnFieldChange<String>

_onString37Change

Change envent for property String37; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString37Change
Event Type
Type Description
OnFieldChange<String>

_onString38Change

Change envent for property String38; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString38Change
Event Type
Type Description
OnFieldChange<String>

_onString39Change

Change envent for property String39; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString39Change
Event Type
Type Description
OnFieldChange<String>

_onString40Change

Change envent for property String40; field is of .NET type string.

Declaration
protected event OnFieldChange<string> _onString40Change
Event Type
Type Description
OnFieldChange<String>

OnDouble01Change

Event raised when Double01 is changing.

Declaration
public event OnFieldChange<double> OnDouble01Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble02Change

Event raised when Double02 is changing.

Declaration
public event OnFieldChange<double> OnDouble02Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble03Change

Event raised when Double03 is changing.

Declaration
public event OnFieldChange<double> OnDouble03Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble04Change

Event raised when Double04 is changing.

Declaration
public event OnFieldChange<double> OnDouble04Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble05Change

Event raised when Double05 is changing.

Declaration
public event OnFieldChange<double> OnDouble05Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble06Change

Event raised when Double06 is changing.

Declaration
public event OnFieldChange<double> OnDouble06Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble07Change

Event raised when Double07 is changing.

Declaration
public event OnFieldChange<double> OnDouble07Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble08Change

Event raised when Double08 is changing.

Declaration
public event OnFieldChange<double> OnDouble08Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble09Change

Event raised when Double09 is changing.

Declaration
public event OnFieldChange<double> OnDouble09Change
Event Type
Type Description
OnFieldChange<Double>

OnDouble10Change

Event raised when Double10 is changing.

Declaration
public event OnFieldChange<double> OnDouble10Change
Event Type
Type Description
OnFieldChange<Double>

OnLong01Change

Event raised when Long01 is changing.

Declaration
public event OnFieldChange<int> OnLong01Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong02Change

Event raised when Long02 is changing.

Declaration
public event OnFieldChange<int> OnLong02Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong03Change

Event raised when Long03 is changing.

Declaration
public event OnFieldChange<int> OnLong03Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong04Change

Event raised when Long04 is changing.

Declaration
public event OnFieldChange<int> OnLong04Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong05Change

Event raised when Long05 is changing.

Declaration
public event OnFieldChange<int> OnLong05Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong06Change

Event raised when Long06 is changing.

Declaration
public event OnFieldChange<int> OnLong06Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong07Change

Event raised when Long07 is changing.

Declaration
public event OnFieldChange<int> OnLong07Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong08Change

Event raised when Long08 is changing.

Declaration
public event OnFieldChange<int> OnLong08Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong09Change

Event raised when Long09 is changing.

Declaration
public event OnFieldChange<int> OnLong09Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong10Change

Event raised when Long10 is changing.

Declaration
public event OnFieldChange<int> OnLong10Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong11Change

Event raised when Long11 is changing.

Declaration
public event OnFieldChange<int> OnLong11Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong12Change

Event raised when Long12 is changing.

Declaration
public event OnFieldChange<int> OnLong12Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong13Change

Event raised when Long13 is changing.

Declaration
public event OnFieldChange<int> OnLong13Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong14Change

Event raised when Long14 is changing.

Declaration
public event OnFieldChange<int> OnLong14Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong15Change

Event raised when Long15 is changing.

Declaration
public event OnFieldChange<int> OnLong15Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong16Change

Event raised when Long16 is changing.

Declaration
public event OnFieldChange<int> OnLong16Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong17Change

Event raised when Long17 is changing.

Declaration
public event OnFieldChange<int> OnLong17Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong18Change

Event raised when Long18 is changing.

Declaration
public event OnFieldChange<int> OnLong18Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong19Change

Event raised when Long19 is changing.

Declaration
public event OnFieldChange<int> OnLong19Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong20Change

Event raised when Long20 is changing.

Declaration
public event OnFieldChange<int> OnLong20Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong21Change

Event raised when Long21 is changing.

Declaration
public event OnFieldChange<int> OnLong21Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong22Change

Event raised when Long22 is changing.

Declaration
public event OnFieldChange<int> OnLong22Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong23Change

Event raised when Long23 is changing.

Declaration
public event OnFieldChange<int> OnLong23Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong24Change

Event raised when Long24 is changing.

Declaration
public event OnFieldChange<int> OnLong24Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong25Change

Event raised when Long25 is changing.

Declaration
public event OnFieldChange<int> OnLong25Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong26Change

Event raised when Long26 is changing.

Declaration
public event OnFieldChange<int> OnLong26Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong27Change

Event raised when Long27 is changing.

Declaration
public event OnFieldChange<int> OnLong27Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong28Change

Event raised when Long28 is changing.

Declaration
public event OnFieldChange<int> OnLong28Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong29Change

Event raised when Long29 is changing.

Declaration
public event OnFieldChange<int> OnLong29Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong30Change

Event raised when Long30 is changing.

Declaration
public event OnFieldChange<int> OnLong30Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong31Change

Event raised when Long31 is changing.

Declaration
public event OnFieldChange<int> OnLong31Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong32Change

Event raised when Long32 is changing.

Declaration
public event OnFieldChange<int> OnLong32Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong33Change

Event raised when Long33 is changing.

Declaration
public event OnFieldChange<int> OnLong33Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong34Change

Event raised when Long34 is changing.

Declaration
public event OnFieldChange<int> OnLong34Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong35Change

Event raised when Long35 is changing.

Declaration
public event OnFieldChange<int> OnLong35Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong36Change

Event raised when Long36 is changing.

Declaration
public event OnFieldChange<int> OnLong36Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong37Change

Event raised when Long37 is changing.

Declaration
public event OnFieldChange<int> OnLong37Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong38Change

Event raised when Long38 is changing.

Declaration
public event OnFieldChange<int> OnLong38Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong39Change

Event raised when Long39 is changing.

Declaration
public event OnFieldChange<int> OnLong39Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong40Change

Event raised when Long40 is changing.

Declaration
public event OnFieldChange<int> OnLong40Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong41Change

Event raised when Long41 is changing.

Declaration
public event OnFieldChange<int> OnLong41Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong42Change

Event raised when Long42 is changing.

Declaration
public event OnFieldChange<int> OnLong42Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong43Change

Event raised when Long43 is changing.

Declaration
public event OnFieldChange<int> OnLong43Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong44Change

Event raised when Long44 is changing.

Declaration
public event OnFieldChange<int> OnLong44Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong45Change

Event raised when Long45 is changing.

Declaration
public event OnFieldChange<int> OnLong45Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong46Change

Event raised when Long46 is changing.

Declaration
public event OnFieldChange<int> OnLong46Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong47Change

Event raised when Long47 is changing.

Declaration
public event OnFieldChange<int> OnLong47Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong48Change

Event raised when Long48 is changing.

Declaration
public event OnFieldChange<int> OnLong48Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong49Change

Event raised when Long49 is changing.

Declaration
public event OnFieldChange<int> OnLong49Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong50Change

Event raised when Long50 is changing.

Declaration
public event OnFieldChange<int> OnLong50Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong51Change

Event raised when Long51 is changing.

Declaration
public event OnFieldChange<int> OnLong51Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong52Change

Event raised when Long52 is changing.

Declaration
public event OnFieldChange<int> OnLong52Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong53Change

Event raised when Long53 is changing.

Declaration
public event OnFieldChange<int> OnLong53Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong54Change

Event raised when Long54 is changing.

Declaration
public event OnFieldChange<int> OnLong54Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong55Change

Event raised when Long55 is changing.

Declaration
public event OnFieldChange<int> OnLong55Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong56Change

Event raised when Long56 is changing.

Declaration
public event OnFieldChange<int> OnLong56Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong57Change

Event raised when Long57 is changing.

Declaration
public event OnFieldChange<int> OnLong57Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong58Change

Event raised when Long58 is changing.

Declaration
public event OnFieldChange<int> OnLong58Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong59Change

Event raised when Long59 is changing.

Declaration
public event OnFieldChange<int> OnLong59Change
Event Type
Type Description
OnFieldChange<Int32>

OnLong60Change

Event raised when Long60 is changing.

Declaration
public event OnFieldChange<int> OnLong60Change
Event Type
Type Description
OnFieldChange<Int32>

OnString01Change

Event raised when String01 is changing.

Declaration
public event OnFieldChange<string> OnString01Change
Event Type
Type Description
OnFieldChange<String>

OnString02Change

Event raised when String02 is changing.

Declaration
public event OnFieldChange<string> OnString02Change
Event Type
Type Description
OnFieldChange<String>

OnString03Change

Event raised when String03 is changing.

Declaration
public event OnFieldChange<string> OnString03Change
Event Type
Type Description
OnFieldChange<String>

OnString04Change

Event raised when String04 is changing.

Declaration
public event OnFieldChange<string> OnString04Change
Event Type
Type Description
OnFieldChange<String>

OnString05Change

Event raised when String05 is changing.

Declaration
public event OnFieldChange<string> OnString05Change
Event Type
Type Description
OnFieldChange<String>

OnString06Change

Event raised when String06 is changing.

Declaration
public event OnFieldChange<string> OnString06Change
Event Type
Type Description
OnFieldChange<String>

OnString07Change

Event raised when String07 is changing.

Declaration
public event OnFieldChange<string> OnString07Change
Event Type
Type Description
OnFieldChange<String>

OnString08Change

Event raised when String08 is changing.

Declaration
public event OnFieldChange<string> OnString08Change
Event Type
Type Description
OnFieldChange<String>

OnString09Change

Event raised when String09 is changing.

Declaration
public event OnFieldChange<string> OnString09Change
Event Type
Type Description
OnFieldChange<String>

OnString10Change

Event raised when String10 is changing.

Declaration
public event OnFieldChange<string> OnString10Change
Event Type
Type Description
OnFieldChange<String>

OnString11Change

Event raised when String11 is changing.

Declaration
public event OnFieldChange<string> OnString11Change
Event Type
Type Description
OnFieldChange<String>

OnString12Change

Event raised when String12 is changing.

Declaration
public event OnFieldChange<string> OnString12Change
Event Type
Type Description
OnFieldChange<String>

OnString13Change

Event raised when String13 is changing.

Declaration
public event OnFieldChange<string> OnString13Change
Event Type
Type Description
OnFieldChange<String>

OnString14Change

Event raised when String14 is changing.

Declaration
public event OnFieldChange<string> OnString14Change
Event Type
Type Description
OnFieldChange<String>

OnString15Change

Event raised when String15 is changing.

Declaration
public event OnFieldChange<string> OnString15Change
Event Type
Type Description
OnFieldChange<String>

OnString16Change

Event raised when String16 is changing.

Declaration
public event OnFieldChange<string> OnString16Change
Event Type
Type Description
OnFieldChange<String>

OnString17Change

Event raised when String17 is changing.

Declaration
public event OnFieldChange<string> OnString17Change
Event Type
Type Description
OnFieldChange<String>

OnString18Change

Event raised when String18 is changing.

Declaration
public event OnFieldChange<string> OnString18Change
Event Type
Type Description
OnFieldChange<String>

OnString19Change

Event raised when String19 is changing.

Declaration
public event OnFieldChange<string> OnString19Change
Event Type
Type Description
OnFieldChange<String>

OnString20Change

Event raised when String20 is changing.

Declaration
public event OnFieldChange<string> OnString20Change
Event Type
Type Description
OnFieldChange<String>

OnString21Change

Event raised when String21 is changing.

Declaration
public event OnFieldChange<string> OnString21Change
Event Type
Type Description
OnFieldChange<String>

OnString22Change

Event raised when String22 is changing.

Declaration
public event OnFieldChange<string> OnString22Change
Event Type
Type Description
OnFieldChange<String>

OnString23Change

Event raised when String23 is changing.

Declaration
public event OnFieldChange<string> OnString23Change
Event Type
Type Description
OnFieldChange<String>

OnString24Change

Event raised when String24 is changing.

Declaration
public event OnFieldChange<string> OnString24Change
Event Type
Type Description
OnFieldChange<String>

OnString25Change

Event raised when String25 is changing.

Declaration
public event OnFieldChange<string> OnString25Change
Event Type
Type Description
OnFieldChange<String>

OnString26Change

Event raised when String26 is changing.

Declaration
public event OnFieldChange<string> OnString26Change
Event Type
Type Description
OnFieldChange<String>

OnString27Change

Event raised when String27 is changing.

Declaration
public event OnFieldChange<string> OnString27Change
Event Type
Type Description
OnFieldChange<String>

OnString28Change

Event raised when String28 is changing.

Declaration
public event OnFieldChange<string> OnString28Change
Event Type
Type Description
OnFieldChange<String>

OnString29Change

Event raised when String29 is changing.

Declaration
public event OnFieldChange<string> OnString29Change
Event Type
Type Description
OnFieldChange<String>

OnString30Change

Event raised when String30 is changing.

Declaration
public event OnFieldChange<string> OnString30Change
Event Type
Type Description
OnFieldChange<String>

OnString31Change

Event raised when String31 is changing.

Declaration
public event OnFieldChange<string> OnString31Change
Event Type
Type Description
OnFieldChange<String>

OnString32Change

Event raised when String32 is changing.

Declaration
public event OnFieldChange<string> OnString32Change
Event Type
Type Description
OnFieldChange<String>

OnString33Change

Event raised when String33 is changing.

Declaration
public event OnFieldChange<string> OnString33Change
Event Type
Type Description
OnFieldChange<String>

OnString34Change

Event raised when String34 is changing.

Declaration
public event OnFieldChange<string> OnString34Change
Event Type
Type Description
OnFieldChange<String>

OnString35Change

Event raised when String35 is changing.

Declaration
public event OnFieldChange<string> OnString35Change
Event Type
Type Description
OnFieldChange<String>

OnString36Change

Event raised when String36 is changing.

Declaration
public event OnFieldChange<string> OnString36Change
Event Type
Type Description
OnFieldChange<String>

OnString37Change

Event raised when String37 is changing.

Declaration
public event OnFieldChange<string> OnString37Change
Event Type
Type Description
OnFieldChange<String>

OnString38Change

Event raised when String38 is changing.

Declaration
public event OnFieldChange<string> OnString38Change
Event Type
Type Description
OnFieldChange<String>

OnString39Change

Event raised when String39 is changing.

Declaration
public event OnFieldChange<string> OnString39Change
Event Type
Type Description
OnFieldChange<String>

OnString40Change

Event raised when String40 is changing.

Declaration
public event OnFieldChange<string> OnString40Change
Event Type
Type Description
OnFieldChange<String>

Implements

INestedPersist
ISoDataLookup
ISentryIgnorable
ISoItem

Extension Methods

EnumUtil.MapEnums<From, To>(From)
QueryExectionExtensions.ExecuteReader(SqlCommand, Boolean)
QueryExectionExtensions.ExecuteScalar<T>(SqlCommand)
QueryExectionExtensions.ExecuteNonQuery(SqlCommand)
Converters.MapEnums<From, To>(From)
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top