1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Update Socket.bf

Added NativeSocket getter
This commit is contained in:
Argentoz 2020-05-02 16:07:42 +03:00 committed by GitHub
parent c1efe630db
commit b15caecb3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -391,6 +391,14 @@ namespace System.Net
return mIsConnected;
}
}
public HSocket NativeSocket
{
get
{
return mHandle;
}
}
}
}