Hi,
the eCLR version chaned from 3.2 to 3.3 in PLCnext Toolchain 2023.
Unfortunately the property Available of the Socket class is now missing. I’ve used this property to determine if there is data to be read
if (socket.Available == 1) { socket.Receive(...); }
Is there an equivalent in eCLR 3.3?
EDIT:
Is
socket.Available
equal to
socket.Poll(0, SelectMode.SelectRead);
?