1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

Merge pull request #190 from Argentoz/patch-2

Add HSocket getter
This commit is contained in:
Brian Fiete 2020-05-02 06:12:16 -07:00 committed by GitHub
commit 4d64f56d90
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;
}
}
}
}