2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 13:33:13 +00:00

Added getter

This commit is contained in:
2019-12-31 19:01:24 +03:00
parent 4174c141b7
commit f9bbd603ce
3 changed files with 44 additions and 14 deletions

View File

@ -445,8 +445,19 @@ namespace Esyur.Net.Sockets
public void Unhold()
{
DataSent(null);
held = false;
try
{
DataSent(null);
}
catch (Exception ex)
{
Console.WriteLine(ex);
Console.Beep();
}
finally
{
held = false;
}
}
}
}