ReadData<T,TE>(TE) Method
- Last UpdatedApr 08, 2026
- 1 minute read
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.
T ReadData<T,TE>(
TE fieldToRead
)
where T: new(), struct
where TE: IRealTimeField
T^ ReadDatageneric<typename T>
generic<typename TE>
(
TE^ fieldToRead
)
where T: gcnew(), value class
where TE: IRealTimeField
Parameters
- fieldToRead
- The field of interest to read. Must correspond correctly with the specified primitive type.
Type Parameters
- T
- TE
Return Value
The value retrieved associated with the given field.