Azavea.NijPredictivePolicing.Common.Data.GenericSeparatedValueWriter.Close C# (CSharp) Method

Close() public method

closes the underlying stream
public Close ( ) : bool
return bool
        public bool Close()
        {
            _outputStream.Flush();
            _outputStream.Close();
            return true;
        }