Lucene.Net.Store.BufferedIndexOutput.Dispose C# (CSharp) Метод

Dispose() защищенный Метод

Closes this stream to further operations.
protected Dispose ( bool disposing ) : void
disposing bool
Результат void
        protected override void Dispose(bool disposing)
        {
            if (isDisposed) return;

            if (disposing)
            {
                Flush();
            }

		    isDisposed = true;
        }