Azavea.NijPredictivePolicing.Parsers.AccessDBValueWriter.Close C# (CSharp) Method

Close() public method

closes the underlying stream
public Close ( ) : bool
return bool
        public bool Close()
        {
            if (IsOpen())
            {
                _conn.Close();
            }
            return true;
        }