Class ActiveUserRecordData
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the activeuser table.
Inheritance
System.Object
ActiveUserRecordData
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class ActiveUserRecordData
Remarks
Please use this class instead of a full ActiveUserRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding ActiveUserTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Constructors
ActiveUserRecordData()
Declaration
public ActiveUserRecordData()
Fields
ActiveuserId
Note: This ID is not assigned from sequence, but instead corresponds to the Associate primary key
Declaration
public int ActiveuserId
Field Value
Type | Description |
---|---|
System.Int32 |
ClientType
1=CRM , 2=Admin, 3=SOQL, …
Declaration
public short ClientType
Field Value
Type | Description |
---|---|
System.Int16 |
ComputerName
Computer name
Declaration
public string ComputerName
Field Value
Type | Description |
---|---|
System.String |
DomainName
Domain name
Declaration
public string DomainName
Field Value
Type | Description |
---|---|
System.String |
Lastlogin
Date of last login
Declaration
public DateTime Lastlogin
Field Value
Type | Description |
---|---|
System.DateTime |
NetAddress
DNS and numeric IP address
Declaration
public string NetAddress
Field Value
Type | Description |
---|---|
System.String |
OsUserName
OS user name currently logged on
Declaration
public string OsUserName
Field Value
Type | Description |
---|---|
System.String |
Extension Methods
EnumUtil.MapEnums<From, To>(From)