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

close() public method

public close ( ) : bool
return bool
        public override bool close()
        {
            try
              {
            if (outStream != null) outStream.Close();
            return true;
              }
              catch (IOException)
              {
            return false;
              }
        }