Pomona.NonClosingStreamWriter.Dispose C# (CSharp) Méthode

Dispose() protected méthode

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.
Résultat void
        protected override void Dispose(bool disposing)
        {
            if (disposing)
                Flush();

            base.Dispose(false);
        }
    }
NonClosingStreamWriter