System.IO.UnmanagedMemoryStream.UnmanagedMemoryStream.Flush C# (CSharp) Method

Flush() public method

public Flush ( ) : void
return void
		public override void Flush ()
		{
			if (closed)
				throw new ObjectDisposedException("The stream is closed");
			//This method performs no action for this class
			//but is included as part of the Stream base class
		}