Helios.Channels.Sockets.TcpSocketChannel.DoFinishConnect C# (CSharp) Method

DoFinishConnect() protected method

protected DoFinishConnect ( SocketChannelAsyncOperation operation ) : void
operation SocketChannelAsyncOperation
return void
        protected override void DoFinishConnect(SocketChannelAsyncOperation operation)
        {
            try
            {
                operation.Validate();
            }
            finally
            {
                operation.Dispose();
            }
            OnConnected();
        }