FindRecord<TE,T>(TE,T) Method
- Last UpdatedApr 08, 2026
- 1 minute read
Generic method; Finds a record in the currently locked table, based on a key value.
public virtual new RealTimeSetRecord FindRecord<TE,T>(
TE keyField,
T keyValue
)
where TE: IRealTimeField
where T: new(), struct
public:
virtual new RealTimeSetRecord^ FindRecordgeneric<typename TE>
generic<typename T>
(
TE^ keyField,
T^ keyValue
)
where TE: IRealTimeField
where T: gcnew(), value class
Parameters
- keyField
- The key field to search.
- keyValue
- The key value to search for.
Type Parameters
- TE
- RealTimeField type. Must be compatible with the specified primitive type.
- T
- Primitive type. Supported: bool, bye, double, float, int, long, short, uint, ulong, and ushort.
Return Value
A record object, or null if no record was found matching the given key value