RealTimeBaseRecord Constructor(RealTimeBaseTable,Int32,RecordLockRequestType,IntPtr)
- Last UpdatedApr 08, 2026
- 1 minute read
Constructor to construct the record with automatic binding to a table
and a pointer to a record which 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,
OASySDNA.RealTime.HighPerformanceSetDB.RecordLockRequestType recordLockType,
IntPtr recordPtrToAttach
)
public:
RealTimeBaseRecord(
RealTimeBaseTable^ table,
int recordNumber,
OASySDNA.RealTime.HighPerformanceSetDB.RecordLockRequestType recordLockType,
IntPtr recordPtrToAttach
)
Parameters
- table
- The table to bind to.
- recordNumber
- The record number which is already locked.
- recordLockType
- What is the lock type (e.g. read,write,etc) of the record.
- recordPtrToAttach
- A record pointer which is already locked/attached.