Automobile.Communication.Tcp.TcpCommunicator.Close C# (CSharp) Method

Close() public method

Close the stream
public Close ( ) : void
return void
        public override void Close()
        {
            base.Close();
            if(Client != null)
            {
                Client.Close();
                Client = null;
            }
        }