8 references to SafeFindHandle
mscorlib (8)
microsoft\win32\win32native.cs (2)
1417internal static extern SafeFindHandle FindFirstFile(string fileName, ref WIN32_FIND_DATA data); 1422SafeFindHandle hndFindFile,
system\io\directory.cs (1)
1372using (SafeFindHandle hnd = Win32Native.FindFirstFile(fullPath + Path.DirectorySeparatorCharAsString + "*", ref data)) {
system\io\file.cs (1)
1374SafeFindHandle handle = Win32Native.FindFirstFile(tempPath, ref findData);
system\io\filesystemenumerable.cs (2)
174SafeFindHandle _hnd = null; 528SafeFindHandle hnd = null;
system\io\isolatedstorage\isolatedstoragefile.cs (1)
2463SafeFindHandle hnd = Win32Native.FindFirstFile(Path.AddLongPathPrefix(fullPath), ref data);
system\io\longpath.cs (1)
751using (SafeFindHandle hnd = Win32Native.FindFirstFile(searchPath, ref data))