BKSystem.IO.BitStream.Flush C# (CSharp) Метод

Flush() публичный Метод

When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device.
Notes to Callers: This method is not supported, and cannot be used.
/// This method is not supported. Since any data written to a /// is written into RAM, this method is /// redundant. ///
public Flush ( ) : void
Результат void
        public override void Flush()
        {
            throw new NotSupportedException(BitStreamResources.GetString("NotSupported_Flush"));
        }