Pomona.NonClosingStreamWriter.Dispose C# (CSharp) Method

Dispose() protected method

Flushes the content of the StreamWriter to the underlying Stream, but does not close it.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void
        protected override void Dispose(bool disposing)
        {
            if (disposing)
                Flush();

            base.Dispose(false);
        }
    }
NonClosingStreamWriter