Fan.Sys.SysOutStream.flush C# (CSharp) Method

flush() public method

public flush ( ) : OutStream
return OutStream
        public override OutStream flush()
        {
            try
              {
            if (outStream != null) outStream.Flush();
            return this;
              }
              catch (IOException e)
              {
            throw IOErr.make(e).val;
              }
        }