Azavea.Open.DAO.CSV.CsvDaLayer.DoneWithWriter C# (CSharp) 메소드

DoneWithWriter() 보호된 메소드

Returns the writer for closing (or not, if we were configured with it).
protected DoneWithWriter ( WriterInfo info ) : void
info WriterInfo The WriterInfo obtained from a GetWriter call.
리턴 void
        protected internal void DoneWithWriter(WriterInfo info)
        {
            // Close it unless we were configured with it.
            if (_connDesc.Type != CsvConnectionType.Writer)
            {
                info.Writer.Close();
            }
        }