mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-13 22:04:09 +02:00
Fixed Blocking setter
This commit is contained in:
parent
43d7a57c38
commit
eedbd9b8f5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue