RealTimeSetRecord Constructor(RealTimeSetTable,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 considered owned elsewhere.
This constructor should only be used in code that transitions between .NET and the underlying C++ libraries.
public RealTimeSetRecord(
RealTimeSetTable table,
IntPtr externallyOwnedRecordPtr
)
public:
RealTimeSetRecord(
RealTimeSetTable^ table,
IntPtr externallyOwnedRecordPtr
)
Parameters
- table
- The table to bind to.
- externallyOwnedRecordPtr
- A pointer to a block of memory sized appropriately for a record from the given table.
The pointer given will NOT be freed when this RealTimeSetRecord instance is destroyed.
The caller is responsible for ensuring that the pointer points to a correctly sized block of memory that has been initialized properly.
The caller must ensure that the memory is not deleted while this instance is alive.