1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-13 05:44:11 +02:00

Fixed Blocking setter

This commit is contained in:
Brian Fiete 2020-07-27 13:58:40 -07:00
parent 43d7a57c38
commit eedbd9b8f5

View file

@ -160,7 +160,7 @@ namespace System.Net
get => mIsBlocking; get => mIsBlocking;
set set
{ {
mIsBlocking = true; mIsBlocking = value;
if (mHandle != INVALID_SOCKET) if (mHandle != INVALID_SOCKET)
SetBlocking(mIsBlocking); SetBlocking(mIsBlocking);
} }