RealTimeBaseRecord Constructor(RealTimeBaseTable,Int32,RecordLockRequestType,IntPtr)
- Last UpdatedApr 08, 2026
- 1 minute read
Initializes a RealTimeBaseRecord instance with automatic binding to a table and a pointer to a record that is already locked/attached.
This constructor should only be used in code that transitions between .NET and the underlying C++ libraries.
public RealTimeBaseRecord(
RealTimeBaseTable table,
int recordNumber,
RecordLockRequestType recordLockType,
IntPtr recordPtrToAttach
)
public:
RealTimeBaseRecord(
RealTimeBaseTable^ table,
int recordNumber,
RecordLockRequestType recordLockType,
IntPtr recordPtrToAttach
)
Parameters
- table
- The table to bind to.
- recordNumber
- The record number that is already locked.
- recordLockType
- The lock type to perform on the table (for example, read, write).
- recordPtrToAttach
- A record pointer that is already locked/attached.