SocketIoFacade: Improve disposal, avoid exception on tear-down

This commit is contained in:
softworkz
2026-02-14 21:25:25 +01:00
parent 8009348941
commit 09c735a10f
3 changed files with 44 additions and 6 deletions

View File

@@ -33,7 +33,7 @@
protected override Task StopCore()
{
this.socket.DisposeSocket();
this.socket.Dispose();
return Task.CompletedTask;
}