Lucene.Net.Analysis.CharFilter.Close C# (CSharp) Метод

Close() публичный Метод

Closes the underlying input stream.

NOTE: The default implementation closes the input Reader, so be sure to call super.close() when overriding this method.

public Close ( ) : void
Результат void
        public override void Close()
        {
            input.Close(); // LUCENENET TODO: Should probably remove this method and make a Dispose() instead.
        }