Mark tests as not working under TARGET_JVM
[mono.git] / mcs / class / corlib / System.IO / FileOptions.cs
index 204bb1f16ed4afa44f3630df857f167d3908517b..5c0874cc3452a1da7d9203f71f68180e33879cf5 100644 (file)
@@ -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
+               //
        }
 }