Banshee.RemoteListener.RemoteListenerService.OnSentResponse C# (CSharp) Method

OnSentResponse() private method

Triggered when response was sent back to client.
private OnSentResponse ( IAsyncResult ar ) : void
ar IAsyncResult /// Contains the client socket. ///
return void
        void OnSentResponse(IAsyncResult ar)
        {
            try {
                ((Socket)ar.AsyncState).Close();
            } catch {
            }
        }