GSF.IO.BlockAllocatedMemoryStream.Flush C# (CSharp) Method

Flush() public method

Overrides the Stream.Flush method so that no action is performed.

This method overrides the Stream.Flush method.

Because any data written to a BlockAllocatedMemoryStream object is written into RAM, this method is superfluous.

public Flush ( ) : void
return void
        public override void Flush()
        {
            // Nothing to flush...
        }