NLog.AbstractTcpSocket.onSent C# (CSharp) Method

onSent() protected method

protected onSent ( IAsyncResult ar ) : void
ar IAsyncResult
return void
        void onSent(IAsyncResult ar)
        {
            var socket = (Socket)ar.AsyncState;
            socket.EndSend(ar);
        }