protected SocketConnection()

in src/Azure.AppService.Tunnel/Tunnel/Sockets/SocketConnection.cs [19:26]


    protected SocketConnection(Lifetime lifetime)
    {
        _lifetime = lifetime;
        Socket.AdviseOnce(lifetime, socket =>
        {
            lifetime.OnTermination(() => CloseSocket(socket));
        });
    }