From 8d8ebd79c1b5e68133cb06888c33fdd10f362e80 Mon Sep 17 00:00:00 2001 From: Ali Yousefi Date: Mon, 9 Oct 2023 16:13:09 +0330 Subject: [PATCH] fix disposed object --- src/CSharp/EasyMicroservices.Laboratory/Engine/Net/TcpHandler.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CSharp/EasyMicroservices.Laboratory/Engine/Net/TcpHandler.cs b/src/CSharp/EasyMicroservices.Laboratory/Engine/Net/TcpHandler.cs index 2d751e9..5b39cfa 100644 --- a/src/CSharp/EasyMicroservices.Laboratory/Engine/Net/TcpHandler.cs +++ b/src/CSharp/EasyMicroservices.Laboratory/Engine/Net/TcpHandler.cs @@ -107,7 +107,6 @@ async void InternalHandleTcpClient(object tcpClient) } catch { - client.Client.Shutdown(SocketShutdown.Send); client.Close(); } }