1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +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;
set
{
mIsBlocking = true;
mIsBlocking = value;
if (mHandle != INVALID_SOCKET)
SetBlocking(mIsBlocking);
}