IRealTimeBaseRecord Interface Members
- Last UpdatedApr 08, 2026
- 4 minute read
The following tables list the members exposed by IRealTimeBaseRecord.
| Name | Description | |
|---|---|---|
![]() | Attached | Identifies whether this record is attached to shared memory. |
![]() | HPDBRealTimeBaseRecord | Underlying instance of the wrapped object. |
![]() | Locked | Identifies whether this record is locked. |
![]() | LockType | Returns the lock type used with the currently locked record. |
![]() | RecordNumber | Returns the currently locked record number. |
![]() | TableName | Name of the bound table. |
| Name | Description | |
|---|---|---|
![]() | AttachInsteadOfLock | Overloaded. Attaches an already bound record to shared memory without locking. UnLock() or DetachInsteadOfUnLock() can be used to finish changes. |
![]() | BindRecordNumber | Binds to a specific record number. If a record object is bound to a table then it'll check whether a given record number exists in the database or not. |
![]() | BindTable | Binds to a specific table. |
![]() | CloneInMemoryCopy | Creates a new record object based on the current one. The newly created record object will not be connected to the database, but instead will be linked to an in memory copy of the current record. |
![]() | CreateLocal | Creates internal local memory for the object. This won't be linked with the RealTime Database. |
![]() | DeleteOnUnLock | Unlocks the record and deletes it. |
![]() | DetachInsteadOfUnLock | Detaches internal pointer without unlocking the record. |
![]() | Dispose | (Inherited from System.IDisposable) |
![]() | GetPointerToField | Gets a direct pointer to a specific field. |
![]() | GetRealTimeType | Gets details of the table structure. |
![]() | Lock | Overloaded. Locks a specific record, allowing for a timeout to be specified. |
![]() | Read | Specific method for reading a field of any type from the currently locked record. |
![]() | ReadData | Overloaded. Generic method; Reads a field from the currently locked record. Supports the following primitive types: bool, byte, double, float, int, long, short, uint, ulong, and ushort. |
![]() | ReadString | Overloaded. Specific method for reading a field of type string from the currently locked record. |
![]() | UnLock | Unlocks the record. |
![]() | Write | Specific method for writing a field of any type from the currently locked record. |
![]() | WriteData | Overloaded. Writes a field into the locked record. Change notification will be sent to Publisher and to Replication server. Supports the following primitive types: bool, byte, double, float, int, long, short, uint, ulong, and ushort. |
![]() | WriteRecord | Overloaded. Overwrite this record with a copy of the internal data of a given record. |
![]() | WriteString | Overloaded. Writes a string type field into the locked record. Change notification will be sent to Publisher and to Replication server. |

