RealTimeSetRecord Constructor(RealTimeSetTable,Int32,RecordLockRequestType,IntPtr)
- Last UpdatedApr 08, 2026
- 1 minute read
Initializes a RealTimeSetRecord 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 RealTimeSetRecord(
RealTimeSetTable table,
int recordNumber,
RecordLockRequestType recordLockType,
IntPtr recordPtrToAttach
)
public:
RealTimeSetRecord(
RealTimeSetTable^ table,
int recordNumber,
RecordLockRequestType recordLockType,
IntPtr recordPtrToAttach
)
Parameters
- table
- The table to bind to.
- recordNumber
- The record number that is already locked.
- recordLockType
- The type of lock to perform on the record (for example, read, write).
- recordPtrToAttach
- A record pointer that is already locked/attached.