Blast.Blast.FlushOutputBuffer C# (CSharp) Method

FlushOutputBuffer() private method

private FlushOutputBuffer ( ) : void
return void
        private void FlushOutputBuffer()
        {
            if (this._outputBufferPos > 0)
            {
                FlushOutputBufferSection(this._outputBufferPos);
                this._outputBufferPos = 0;
            }
        }