4 references to GENERIC_READ
mscorlib (4)
system\io\file.cs (1)
178using(SafeFileHandle handle = Win32Native.UnsafeCreateFile(fullSourceFileName, FileStream.GENERIC_READ, FileShare.Read, null, FileMode.Open, 0, IntPtr.Zero)) {
system\io\filestream.cs (2)
700fAccess = access == FileAccess.Read? GENERIC_READ: 702GENERIC_READ | GENERIC_WRITE;
system\io\longpath.cs (1)
226using(SafeFileHandle handle = Win32Native.UnsafeCreateFile(fullSourceFileName, FileStream.GENERIC_READ, FileShare.Read, null, FileMode.Open, 0, IntPtr.Zero)) {