Missing Socket Property

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);

?

Sorry for the delay.
The answers to your questions are “yes” and “yes”.
socket.Poll(0, SelectMode.SelectRead) is the recommended replacement for the now unavailable socket.Available attribute.