DBreeze.Storage.FSR.NET_Flush C# (CSharp) Method

NET_Flush() public static method

public static NET_Flush ( FileStream mfs ) : void
mfs System.IO.FileStream
return void
        public static void NET_Flush(FileStream mfs)
        {
            mfs.Flush(true);

            //VolumeInfo.GetVolumes()[0].FlushAll();
        }

Same methods

FSR::NET_Flush ( IFileStream mfs ) : void

Usage Example

Example #1
0
        public void Flush()
        {
            if (!wasWritten)
            {
                return;
            }

            lock (lock_ibp_fs)
            {
                FSR.NET_Flush(fs);
                wasWritten = false;
            }
        }
All Usage Examples Of DBreeze.Storage.FSR::NET_Flush