Fan.Sys.LocalFile.LocalFileOutStream.sync C# (CSharp) Méthode

sync() public méthode

public sync ( ) : OutStream
Résultat OutStream
            public override OutStream sync()
            {
                try
                {
                  flush();
                  /*fd.sync();*/
                  return this;
                }
                catch (System.IO.IOException e)
                {
                  throw IOErr.make(e).val;
                }
            }
LocalFile.LocalFileOutStream