Read Points
The function rm.ReadPoint.SetReadPointStatus allows enabling or disabling the read point (Antenna) for the specified antenna ID.
// set read point (antenna 1) enable
rm.ReadPoint.SetReadPointStatus(1, READPOINT_STATUS.ENABLE);
To know the current status of the specified read point (Antenna), the method rm.ReadPoint.GetReadPointStatus can be called.
// get read point (antenna 1) status
ushort antennaID = 1;
READPOINT_STATUS readPointStatus = rm.ReadPoint.GetReadPointStatus(antennaID);