WriteField<T>(String,T,RTChangeNotification) Method
- Last UpdatedApr 08, 2026
- 1 minute read
Writes a field into the locked record. Change notification
will be sent to Publisher and to Replication server.
Supports the following primitive types: string, bool, byte, double, float, int, long, short, uint, ulong, and ushort.
public void WriteField<T>(
string fieldName,
T newValue,
OASySDNA.RealTime.HighPerformanceSetDB.RTChangeNotification changeNotification
)
public:
void WriteFieldgeneric<typename T>
(
String^ fieldName,
T^ newValue,
OASySDNA.RealTime.HighPerformanceSetDB.RTChangeNotification changeNotification
)
Parameters
- fieldName
- The name of the field to write to.
- newValue
- The new value to write.
- changeNotification
- Change notification for data. When record is unlocked, request will be sent to publisher or replication server depending on this parameter value.
Type Parameters
- T