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