2 writes to _hFindFile
System.Web (2)
Util\FileEnumerator.cs (2)
125_hFindFile = UnsafeNativeMethods.FindFirstFile(_path + @"\*.*", out _wfd); 155_hFindFile = UnsafeNativeMethods.INVALID_HANDLE_VALUE;
5 references to _hFindFile
System.Web (5)
Util\FileEnumerator.cs (5)
124if (_hFindFile == UnsafeNativeMethods.INVALID_HANDLE_VALUE) { 128if (_hFindFile == UnsafeNativeMethods.INVALID_HANDLE_VALUE) 132bool hasMoreFiles = UnsafeNativeMethods.FindNextFile(_hFindFile, out _wfd); 153if (_hFindFile != UnsafeNativeMethods.INVALID_HANDLE_VALUE) { 154UnsafeNativeMethods.FindClose(_hFindFile);