X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.IO%2FFileOptions.cs;h=5c0874cc3452a1da7d9203f71f68180e33879cf5;hb=30c28c41d7859b7de6ecd7afb652468517048d12;hp=204bb1f16ed4afa44f3630df857f167d3908517b;hpb=00e065484e866f3a0349c882f804c4a79a13ee5c;p=mono.git diff --git a/mcs/class/corlib/System.IO/FileOptions.cs b/mcs/class/corlib/System.IO/FileOptions.cs index 204bb1f16ed..5c0874cc345 100644 --- a/mcs/class/corlib/System.IO/FileOptions.cs +++ b/mcs/class/corlib/System.IO/FileOptions.cs @@ -36,7 +36,6 @@ namespace System.IO [Flags] [Serializable] [ComVisible(true)] - [MonoTODO] #if NET_2_0 public enum FileOptions #else @@ -50,6 +49,13 @@ namespace System.IO RandomAccess = 0x10000000, Asynchronous = 0x40000000, WriteThrough = -2147483648 + // + // FileIsTemporary = 1 + // The above is an internal value used by Path.GetTempFile to + // get a file with 600 permissions, regardless of the umask + // settings. If a value "1" must be introduced here, update + // both metadata/file-io.c and Path.GetTempFile + // } }