System.IO.MonoIO.Flush C# (CSharp) Méthode

Flush() private méthode

private Flush ( IntPtr handle, MonoIOError &error ) : bool
handle System.IntPtr
error MonoIOError
Résultat bool
		public static extern bool Flush(IntPtr handle, out MonoIOError error);
	}

Usage Example

Exemple #1
0
        public virtual void Flush(bool flushToDisk)
        {
            FlushBuffer();

            // This does the fsync
            if (flushToDisk)
            {
                MonoIOError error;
                MonoIO.Flush(handle, out error);
            }
        }
All Usage Examples Of System.IO.MonoIO::Flush
MonoIO